glitch in the license text detected by hyazinthe, thank you!
[oweals/gnunet.git] / src / include / gnunet_multicast_service.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012, 2013 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14 */
15
16 /**
17  * @author Gabor X Toth
18  * @author Christian Grothoff
19  *
20  * @file
21  * Multicast service; multicast messaging via CADET
22  *
23  * @defgroup multicast  Multicast service
24  * Multicast messaging via CADET.
25  * @{
26  */
27
28 #ifndef GNUNET_MULTICAST_SERVICE_H
29 #define GNUNET_MULTICAST_SERVICE_H
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #if 0                           /* keep Emacsens' auto-indent happy */
35 }
36 #endif
37 #endif
38
39 #include "gnunet_util_lib.h"
40 #include "gnunet_transport_service.h"
41
42 /**
43  * Version number of GNUnet-multicast API.
44  */
45 #define GNUNET_MULTICAST_VERSION 0x00000000
46
47 /**
48  * Opaque handle for a multicast group member.
49  */
50 struct GNUNET_MULTICAST_Member;
51
52 /**
53  * Handle for the origin of a multicast group.
54  */
55 struct GNUNET_MULTICAST_Origin;
56
57
58 enum GNUNET_MULTICAST_MessageFlags
59 {
60   /**
61    * First fragment of a message.
62    */
63   GNUNET_MULTICAST_MESSAGE_FIRST_FRAGMENT = 1 << 0,
64
65   /**
66    * Last fragment of a message.
67    */
68   GNUNET_MULTICAST_MESSAGE_LAST_FRAGMENT = 1 << 1,
69
70   /**
71    * OR'ed flags if message is not fragmented.
72    */
73   GNUNET_MULTICAST_MESSAGE_NOT_FRAGMENTED
74     = GNUNET_MULTICAST_MESSAGE_FIRST_FRAGMENT
75   | GNUNET_MULTICAST_MESSAGE_LAST_FRAGMENT,
76
77   /**
78    * Historic message, used only locally when replaying messages from local
79    * storage.
80    */
81   GNUNET_MULTICAST_MESSAGE_HISTORIC = 1 << 30
82
83 };
84
85
86 GNUNET_NETWORK_STRUCT_BEGIN
87
88 /**
89  * Header of a multicast message fragment.
90  *
91  * This format is public as the replay mechanism must replay message fragments using the
92  * same format.  This is needed as we want to integrity-check message fragments within
93  * the multicast layer to avoid multicasting mal-formed messages.
94  */
95 struct GNUNET_MULTICAST_MessageHeader
96 {
97
98   /**
99    * Header for all multicast message fragments from the origin.
100    */
101   struct GNUNET_MessageHeader header;
102
103   /**
104    * Number of hops this message fragment has taken since the origin.
105    *
106    * Helpful to determine shortest paths to the origin among honest peers for
107    * unicast requests from members.  Updated at each hop and thus not signed and
108    * not secure.
109    */
110   uint32_t hop_counter GNUNET_PACKED;
111
112   /**
113    * ECC signature of the message fragment.
114    *
115    * Signature must match the public key of the multicast group.
116    */
117   struct GNUNET_CRYPTO_EddsaSignature signature;
118
119   /**
120    * Purpose for the signature and size of the signed data.
121    */
122   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
123
124   /**
125    * Number of the message fragment, monotonically increasing starting from 1.
126    */
127   uint64_t fragment_id GNUNET_PACKED;
128
129   /**
130    * Byte offset of this @e fragment of the @e message.
131    */
132   uint64_t fragment_offset GNUNET_PACKED;
133
134   /**
135    * Number of the message this fragment belongs to.
136    *
137    * Set in GNUNET_MULTICAST_origin_to_all().
138    */
139   uint64_t message_id GNUNET_PACKED;
140
141   /**
142    * Counter that monotonically increases whenever a member parts the group.
143    *
144    * Set in GNUNET_MULTICAST_origin_to_all().
145    *
146    * It has significance in case of replay requests: when a member has missed
147    * messages and gets a replay request: in this case if the @a group_generation
148    * is still the same before and after the missed messages, it means that no
149    * @e join or @e part operations happened during the missed messages.
150    */
151   uint64_t group_generation GNUNET_PACKED;
152
153   /**
154    * Flags for this message fragment.
155    *
156    * @see enum GNUNET_MULTICAST_MessageFlags
157    */
158   uint32_t flags GNUNET_PACKED;
159
160   /* Followed by message body. */
161 };
162
163
164 /**
165  * Header of a request from a member to the origin.
166  */
167 struct GNUNET_MULTICAST_RequestHeader
168 {
169   /**
170    * Header for all requests from a member to the origin.
171    */
172   struct GNUNET_MessageHeader header;
173
174   /**
175    * Public key of the sending member.
176    */
177   struct GNUNET_CRYPTO_EcdsaPublicKey member_pub_key;
178
179   /**
180    * ECC signature of the request fragment.
181    *
182    * Signature must match the public key of the multicast group.
183    */
184   struct GNUNET_CRYPTO_EcdsaSignature signature;
185
186   /**
187    * Purpose for the signature and size of the signed data.
188    */
189   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
190
191   /**
192    * Number of the request fragment.
193    * Monotonically increasing from 1.
194    */
195   uint64_t fragment_id GNUNET_PACKED;
196
197   /**
198    * Byte offset of this @e fragment of the @e request.
199    */
200   uint64_t fragment_offset GNUNET_PACKED;
201
202   /**
203    * Number of the request this fragment belongs to.
204    *
205    * Set in GNUNET_MULTICAST_origin_to_all().
206    */
207   uint64_t request_id GNUNET_PACKED;
208
209   /**
210    * Flags for this request.
211    */
212   enum GNUNET_MULTICAST_MessageFlags flags GNUNET_PACKED;
213
214   /* Followed by request body. */
215 };
216
217 GNUNET_NETWORK_STRUCT_END
218
219
220 /**
221  * Maximum size of a multicast message fragment.
222  */
223 #define GNUNET_MULTICAST_FRAGMENT_MAX_SIZE (63 * 1024)
224
225 #define GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD           \
226   (GNUNET_MULTICAST_FRAGMENT_MAX_SIZE                   \
227    - sizeof (struct GNUNET_MULTICAST_MessageHeader))
228
229
230 /**
231  * Handle that identifies a join request.
232  *
233  * Used to match calls to #GNUNET_MULTICAST_JoinRequestCallback to the
234  * corresponding calls to #GNUNET_MULTICAST_join_decision().
235  */
236 struct GNUNET_MULTICAST_JoinHandle;
237
238
239 /**
240  * Function to call with the decision made for a join request.
241  *
242  * Must be called once and only once in response to an invocation of the
243  * #GNUNET_MULTICAST_JoinRequestCallback.
244  *
245  * @param jh
246  *        Join request handle.
247  * @param is_admitted
248  *        #GNUNET_YES    if the join is approved,
249  *        #GNUNET_NO     if it is disapproved,
250  *        #GNUNET_SYSERR if we cannot answer the request.
251  * @param relay_count
252  *        Number of relays given.
253  * @param relays
254  *        Array of suggested peers that might be useful relays to use
255  *        when joining the multicast group (essentially a list of peers that
256  *        are already part of the multicast group and might thus be willing
257  *        to help with routing).  If empty, only this local peer (which must
258  *        be the multicast origin) is a good candidate for building the
259  *        multicast tree.  Note that it is unnecessary to specify our own
260  *        peer identity in this array.
261  * @param join_resp
262  *        Message to send in response to the joining peer;
263  *        can also be used to redirect the peer to a different group at the
264  *        application layer; this response is to be transmitted to the
265  *        peer that issued the request even if admission is denied.
266  */
267 struct GNUNET_MULTICAST_ReplayHandle *
268 GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
269                                 int is_admitted,
270                                 uint16_t relay_count,
271                                 const struct GNUNET_PeerIdentity *relays,
272                                 const struct GNUNET_MessageHeader *join_resp);
273
274
275 /**
276  * Method called whenever another peer wants to join the multicast group.
277  *
278  * Implementations of this function must call GNUNET_MULTICAST_join_decision()
279  * with the decision.
280  *
281  * @param cls
282  *        Closure.
283  * @param member_pub_key
284  *        Public key of the member requesting join.
285  * @param join_msg
286  *        Application-dependent join message from the new member.
287  * @param jh
288  *        Join handle to pass to GNUNET_MULTICAST_join_decison().
289  */
290 typedef void
291 (*GNUNET_MULTICAST_JoinRequestCallback) (void *cls,
292                                          const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key,
293                                          const struct GNUNET_MessageHeader *join_msg,
294                                          struct GNUNET_MULTICAST_JoinHandle *jh);
295
296
297 /**
298  * Method called to inform about the decision in response to a join request.
299  *
300  * If @a is_admitted is not #GNUNET_YES, then the multicast service disconnects
301  * the client and the multicast member handle returned by
302  * GNUNET_MULTICAST_member_join() is invalidated.
303  *
304  * @param cls
305  *         Closure.
306  * @param is_admitted
307  *         #GNUNET_YES or #GNUNET_NO or #GNUNET_SYSERR
308  * @param peer
309  *        The peer we are connected to and the join decision is from.
310  * @param relay_count
311  *        Number of peers in the @a relays array.
312  * @param relays
313  *        Peer identities of members of the group, which serve as relays
314  *        and can be used to join the group at.  If empty, only the origin can
315  *        be used to connect to the group.
316  * @param join_msg
317  *        Application-dependent join message from the origin.
318  */
319 typedef void
320 (*GNUNET_MULTICAST_JoinDecisionCallback) (void *cls,
321                                           int is_admitted,
322                                           const struct GNUNET_PeerIdentity *peer,
323                                           uint16_t relay_count,
324                                           const struct GNUNET_PeerIdentity *relays,
325                                           const struct GNUNET_MessageHeader *join_msg);
326
327
328 /**
329  * Function called whenever a group member has transmitted a request
330  * to the origin (other than joining or leaving).
331  *
332  * FIXME: need to distinguish between origin cancelling a message (some fragments
333  * were sent, then the rest 'discarded') and the case where we got disconnected;
334  * right now, both would mean 'msg' is NULL, but they could be quite different...
335  * So the semantics from the receiver side of
336  * GNUNET_MULTICAST_member_to_origin_cancel() are not clear here.   Maybe we
337  * should do something with the flags in this case?
338  *
339  * @param cls
340  *        Closure (set from GNUNET_MULTICAST_origin_start).
341  * @param sender
342  *        Identity of the sender.
343  * @param req
344  *        Request to the origin.
345  * @param flags
346  *        Flags for the request.
347  */
348 typedef void
349 (*GNUNET_MULTICAST_RequestCallback) (void *cls,
350                                      const struct GNUNET_MULTICAST_RequestHeader *req);
351
352
353 /**
354  * Function called whenever a group member is receiving a message fragment from
355  * the origin.
356  *
357  * If admission to the group is denied, this function is called once with the
358  * response of the @e origin (as given to GNUNET_MULTICAST_join_decision()) and
359  * then a second time with NULL to indicate that the connection failed for good.
360  *
361  * FIXME: need to distinguish between origin cancelling a message (some fragments
362  * were sent, then the rest 'discarded') and the case where we got disconnected;
363  * right now, both would mean 'msg' is NULL, but they could be quite different...
364  * So the semantics from the receiver side of
365  * GNUNET_MULTICAST_origin_to_all_cancel() are not clear here.
366  *
367  * @param cls
368  *        Closure (set from GNUNET_MULTICAST_member_join())
369  * @param msg
370  *        Message from the origin, NULL if the origin shut down
371  *        (or we were kicked out, and we should thus call
372  *        GNUNET_MULTICAST_member_part() next)
373  */
374 typedef void
375 (*GNUNET_MULTICAST_MessageCallback) (void *cls,
376                                      const struct GNUNET_MULTICAST_MessageHeader *msg);
377
378
379 /**
380  * Opaque handle to a replay request from the multicast service.
381  */
382 struct GNUNET_MULTICAST_ReplayHandle;
383
384
385 /**
386  * Functions with this signature are called whenever the multicast service needs
387  * a message fragment to be replayed by fragment_id.
388  *
389  * Implementations of this function MUST call GNUNET_MULTICAST_replay() ONCE
390  * (with a message or an error); however, if the origin is destroyed or the
391  * group is left, the replay handle must no longer be used.
392  *
393  * @param cls
394  *        Closure (set from GNUNET_MULTICAST_origin_start()
395  *        or GNUNET_MULTICAST_member_join()).
396  * @param member_pub_key
397  *        The member requesting replay.
398  * @param fragment_id
399  *        Which message fragment should be replayed.
400  * @param flags
401  *        Flags for the replay.
402  * @param rh
403  *        Handle to pass to message transmit function.
404  */
405 typedef void
406 (*GNUNET_MULTICAST_ReplayFragmentCallback) (void *cls,
407                                             const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key,
408                                             uint64_t fragment_id,
409                                             uint64_t flags,
410                                             struct GNUNET_MULTICAST_ReplayHandle *rh);
411
412 /**
413  * Functions with this signature are called whenever the multicast service needs
414  * a message fragment to be replayed by message_id and fragment_offset.
415  *
416  * Implementations of this function MUST call GNUNET_MULTICAST_replay() ONCE
417  * (with a message or an error); however, if the origin is destroyed or the
418  * group is left, the replay handle must no longer be used.
419  *
420  * @param cls
421  *        Closure (set from GNUNET_MULTICAST_origin_start()
422  *        or GNUNET_MULTICAST_member_join()).
423  * @param member_pub_key
424  *        The member requesting replay.
425  * @param message_id
426  *        Which message should be replayed.
427  * @param fragment_offset
428  *        Offset of the fragment within of @a message_id to be replayed.
429  * @param flags
430  *        Flags for the replay.
431  * @param rh
432  *        Handle to pass to message transmit function.
433  */
434 typedef void
435 (*GNUNET_MULTICAST_ReplayMessageCallback) (void *cls,
436                                            const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key,
437                                            uint64_t message_id,
438                                            uint64_t fragment_offset,
439                                            uint64_t flags,
440                                            struct GNUNET_MULTICAST_ReplayHandle *rh);
441
442
443 /**
444  * Possible error codes during replay.
445  */
446 enum GNUNET_MULTICAST_ReplayErrorCode
447 {
448
449   /**
450    * Everything is fine.
451    */
452   GNUNET_MULTICAST_REC_OK = 0,
453
454   /**
455    * Message fragment not found in the message store.
456    *
457    * Either discarded if it is too old, or not arrived yet if this member has
458    * missed some messages.
459    */
460   GNUNET_MULTICAST_REC_NOT_FOUND = 1,
461
462   /**
463    * Fragment ID counter was larger than the highest counter this
464    * replay function has ever encountered; thus it is likely the
465    * origin never sent it and we're at the HEAD of the multicast
466    * stream as far as this node is concerned.
467    *
468    * FIXME: needed?
469    */
470   GNUNET_MULTICAST_REC_PAST_HEAD = 2,
471
472   /**
473    * Access is denied to the requested fragment, membership test did not pass.
474    */
475   GNUNET_MULTICAST_REC_ACCESS_DENIED = 3,
476
477   /**
478    * Internal error (i.e. database error).  Try some other peer.
479    */
480   GNUNET_MULTICAST_REC_INTERNAL_ERROR = 4
481
482 };
483
484
485 /**
486  * Replay a message fragment for the multicast group.
487  *
488  * @param rh
489  *        Replay handle identifying which replay operation was requested.
490  * @param msg
491  *        Replayed message fragment, NULL if not found / an error occurred.
492  * @param ec
493  *        Error code.  See enum GNUNET_MULTICAST_ReplayErrorCode
494  *        If not #GNUNET_MULTICAST_REC_OK, the replay handle is invalidated.
495  */
496 void
497 GNUNET_MULTICAST_replay_response (struct GNUNET_MULTICAST_ReplayHandle *rh,
498                                   const struct GNUNET_MessageHeader *msg,
499                                   enum GNUNET_MULTICAST_ReplayErrorCode ec);
500
501
502 /**
503  * Indicate the end of the replay session.
504  *
505  * Invalidates the replay handle.
506  *
507  * @param rh Replay session to end.
508  */
509 void
510 GNUNET_MULTICAST_replay_response_end (struct GNUNET_MULTICAST_ReplayHandle *rh);
511
512
513 /**
514  * Function called to provide data for a transmission for a replay.
515  *
516  * @see GNUNET_MULTICAST_replay2()
517  */
518 typedef int
519 (*GNUNET_MULTICAST_ReplayTransmitNotify) (void *cls,
520                                           size_t *data_size,
521                                           void *data);
522
523
524 /**
525  * Replay a message for the multicast group.
526  *
527  * @param rh
528  *        Replay handle identifying which replay operation was requested.
529  * @param notify
530  *        Function to call to get the message.
531  * @param notify_cls
532  *        Closure for @a notify.
533  */
534 void
535 GNUNET_MULTICAST_replay_response2 (struct GNUNET_MULTICAST_ReplayHandle *rh,
536                                    GNUNET_MULTICAST_ReplayTransmitNotify notify,
537                                    void *notify_cls);
538
539
540 /**
541  * Start a multicast group.
542  *
543  * Peers that issue GNUNET_MULTICAST_member_join() can transmit a join request
544  * to either an existing group member or to the origin.  If the joining is
545  * approved, the member is cleared for @e replay and will begin to receive
546  * messages transmitted to the group.  If joining is disapproved, the failed
547  * candidate will be given a response.  Members in the group can send messages
548  * to the origin.
549  *
550  * TODO: This function could optionally offer to advertise the origin in the
551  * P2P overlay network(where?) under the respective public key so that other
552  * peers can find an alternate PeerId to join it. Higher level protocols may
553  * however provide other means of solving the problem of the offline host
554  * (see secushare specs about that) and therefore merely need a way to provide
555  * a list of possible PeerIds.
556  *
557  * @param cfg
558  *        Configuration to use.
559  * @param priv_key
560  *        ECC key that will be used to sign messages for this
561  *        multicast session; public key is used to identify the multicast group;
562  * @param max_fragment_id
563  *        Maximum fragment ID already sent to the group.
564  *        0 for a new group.
565  * @param join_request_cb
566  *        Function called to approve / disapprove joining of a peer.
567  * @param replay_frag_cb
568  *        Function that can be called to replay a message fragment.
569  * @param replay_msg_cb
570  *        Function that can be called to replay a message.
571  * @param request_cb
572  *        Function called with message fragments from group members.
573  * @param message_cb
574  *        Function called with the message fragments sent to the
575  *        network by GNUNET_MULTICAST_origin_to_all().  These message fragments
576  *        should be stored for answering replay requests later.
577  * @param cls
578  *        Closure for the various callbacks that follow.
579  *
580  * @return Handle for the origin, NULL on error.
581  */
582 struct GNUNET_MULTICAST_Origin *
583 GNUNET_MULTICAST_origin_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
584                                const struct GNUNET_CRYPTO_EddsaPrivateKey *priv_key,
585                                uint64_t max_fragment_id,
586                                GNUNET_MULTICAST_JoinRequestCallback join_request_cb,
587                                GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
588                                GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
589                                GNUNET_MULTICAST_RequestCallback request_cb,
590                                GNUNET_MULTICAST_MessageCallback message_cb,
591                                void *cls);
592
593 /**
594  * Function called to provide data for a transmission from the origin to all
595  * members.
596  *
597  * Note that returning #GNUNET_OK or #GNUNET_SYSERR (but not #GNUNET_NO)
598  * invalidates the respective transmission handle.
599  *
600  * @param cls
601  *        Closure.
602  * @param[in,out] data_size
603  *        Initially set to the number of bytes available in
604  *        @a data, should be set to the number of bytes written to data.
605  * @param[out] data
606  *        Where to write the body of the message to give to the
607  *         method. The function must copy at most @a data_size bytes to @a data.
608  *
609  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
610  *         #GNUNET_NO on success, if more data is to be transmitted later.
611  *         Should be used if @a data_size was not big enough to take all the
612  *         data.  If 0 is returned in @a data_size the transmission is paused,
613  *         and can be resumed with GNUNET_MULTICAST_origin_to_all_resume().
614  *         #GNUNET_YES if this completes the transmission (all data supplied)
615  * @deprecated should move to MQ-style API!
616  */
617 typedef int
618 (*GNUNET_MULTICAST_OriginTransmitNotify) (void *cls,
619                                           size_t *data_size,
620                                           void *data);
621
622
623 /**
624  * Handle for a request to send a message to all multicast group members
625  * (from the origin).
626  */
627 struct GNUNET_MULTICAST_OriginTransmitHandle;
628
629
630 /**
631  * Send a message to the multicast group.
632  *
633  * @param origin
634  *        Handle to the multicast group.
635  * @param message_id
636  *        Application layer ID for the message.  Opaque to multicast.
637  * @param group_generation
638  *        Group generation of the message.  Documented in
639  *        struct GNUNET_MULTICAST_MessageHeader.
640  * @param notify
641  *        Function to call to get the message.
642  * @param notify_cls
643  *        Closure for @a notify.
644  *
645  * @return NULL on error (i.e. request already pending).
646  * @deprecated should move to MQ-style API!
647  */
648 struct GNUNET_MULTICAST_OriginTransmitHandle *
649 GNUNET_MULTICAST_origin_to_all (struct GNUNET_MULTICAST_Origin *origin,
650                                 uint64_t message_id,
651                                 uint64_t group_generation,
652                                 GNUNET_MULTICAST_OriginTransmitNotify notify,
653                                 void *notify_cls);
654
655
656
657 /**
658  * Resume message transmission to multicast group.
659  *
660  * @param th  Transmission to cancel.
661  */
662 void
663 GNUNET_MULTICAST_origin_to_all_resume (struct GNUNET_MULTICAST_OriginTransmitHandle *th);
664
665
666 /**
667  * Cancel request for message transmission to multicast group.
668  *
669  * @param th  Transmission to cancel.
670  */
671 void
672 GNUNET_MULTICAST_origin_to_all_cancel (struct GNUNET_MULTICAST_OriginTransmitHandle *th);
673
674
675 /**
676  * Stop a multicast group.
677  *
678  * @param origin Multicast group to stop.
679  */
680 void
681 GNUNET_MULTICAST_origin_stop (struct GNUNET_MULTICAST_Origin *origin,
682                               GNUNET_ContinuationCallback stop_cb,
683                               void *stop_cls);
684
685
686 /**
687  * Join a multicast group.
688  *
689  * The entity joining is always the local peer.  Further information about the
690  * candidate can be provided in @a join_msg.  If the join fails, the
691  * @a message_cb is invoked with a (failure) response and then with NULL.  If
692  * the join succeeds, outstanding (state) messages and ongoing multicast
693  * messages will be given to the @a message_cb until the member decides to part
694  * the group.  The @a mem_test_cb and @a replay_cb functions may be called at
695  * anytime by the multicast service to support relaying messages to other
696  * members of the group.
697  *
698  * @param cfg
699  *        Configuration to use.
700  * @param group_key
701  *        ECC public key that identifies the group to join.
702  * @param member_pub_key
703  *        ECC key that identifies the member
704  *        and used to sign requests sent to the origin.
705  * @param origin
706  *        Peer ID of the origin to send unicast requsets to.  If NULL,
707  *        unicast requests are sent back via multiple hops on the reverse path
708  *        of multicast messages.
709  * @param relay_count
710  *        Number of peers in the @a relays array.
711  * @param relays
712  *        Peer identities of members of the group, which serve as relays
713  *        and can be used to join the group at. and send the @a join_request to.
714  *        If empty, the @a join_request is sent directly to the @a origin.
715  * @param join_msg
716  *        Application-dependent join message to be passed to the peer @a origin.
717  * @param join_request_cb
718  *        Function called to approve / disapprove joining of a peer.
719  * @param join_decision_cb
720  *        Function called to inform about the join decision.
721  * @param replay_frag_cb
722  *        Function that can be called to replay message fragments
723  *        this peer already knows from this group. NULL if this
724  *        client is unable to support replay.
725  * @param replay_msg_cb
726  *        Function that can be called to replay message fragments
727  *        this peer already knows from this group. NULL if this
728  *        client is unable to support replay.
729  * @param message_cb
730  *        Function to be called for all message fragments we
731  *        receive from the group, excluding those our @a replay_cb
732  *        already has.
733  * @param cls
734  *        Closure for callbacks.
735  *
736  * @return Handle for the member, NULL on error.
737  */
738 struct GNUNET_MULTICAST_Member *
739 GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
740                               const struct GNUNET_CRYPTO_EddsaPublicKey *group_key,
741                               const struct GNUNET_CRYPTO_EcdsaPrivateKey *member_pub_key,
742                               const struct GNUNET_PeerIdentity *origin,
743                               uint16_t relay_count,
744                               const struct GNUNET_PeerIdentity *relays,
745                               const struct GNUNET_MessageHeader *join_request,
746                               GNUNET_MULTICAST_JoinRequestCallback join_request_cb,
747                               GNUNET_MULTICAST_JoinDecisionCallback join_decision_cb,
748                               GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
749                               GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
750                               GNUNET_MULTICAST_MessageCallback message_cb,
751                               void *cls);
752
753 /**
754  * Handle for a replay request.
755  */
756 struct GNUNET_MULTICAST_MemberReplayHandle;
757
758
759 /**
760  * Request a fragment to be replayed by fragment ID.
761  *
762  * Useful if messages below the @e max_known_fragment_id given when joining are
763  * needed and not known to the client.
764  *
765  * @param member
766  *        Membership handle.
767  * @param fragment_id
768  *        ID of a message fragment that this client would like to see replayed.
769  * @param flags
770  *        Additional flags for the replay request.
771  *        It is used and defined by GNUNET_MULTICAST_ReplayFragmentCallback
772  *
773  * @return Replay request handle, NULL on error.
774  */
775 struct GNUNET_MULTICAST_MemberReplayHandle *
776 GNUNET_MULTICAST_member_replay_fragment (struct GNUNET_MULTICAST_Member *member,
777                                          uint64_t fragment_id,
778                                          uint64_t flags);
779
780
781 /**
782  * Request a message fr to be replayed.
783  *
784  * Useful if messages below the @e max_known_fragment_id given when joining are
785  * needed and not known to the client.
786  *
787  * @param member
788  *        Membership handle.
789  * @param message_id
790  *        ID of the message this client would like to see replayed.
791  * @param fragment_offset
792  *        Offset of the fragment within the message to replay.
793  * @param flags
794  *        Additional flags for the replay request.
795  *        It is used & defined by GNUNET_MULTICAST_ReplayMessageCallback
796  *
797  * @return Replay request handle, NULL on error.
798  */
799 struct GNUNET_MULTICAST_MemberReplayHandle *
800 GNUNET_MULTICAST_member_replay_message (struct GNUNET_MULTICAST_Member *member,
801                                         uint64_t message_id,
802                                         uint64_t fragment_offset,
803                                         uint64_t flags);
804
805
806 /**
807  * Cancel a replay request.
808  *
809  * @param rh
810  *        Request to cancel.
811  */
812 void
813 GNUNET_MULTICAST_member_replay_cancel (struct GNUNET_MULTICAST_MemberReplayHandle *rh);
814
815
816 /**
817  * Part a multicast group.
818  *
819  * Disconnects from all group members and invalidates the @a member handle.
820  *
821  * An application-dependent part message can be transmitted beforehand using
822  * #GNUNET_MULTICAST_member_to_origin())
823  *
824  * @param member
825  *        Membership handle.
826  */
827 void
828 GNUNET_MULTICAST_member_part (struct GNUNET_MULTICAST_Member *member,
829                               GNUNET_ContinuationCallback part_cb,
830                               void *part_cls);
831
832
833 /**
834  * Function called to provide data for a transmission from a member to the origin.
835  *
836  * Note that returning #GNUNET_OK or #GNUNET_SYSERR (but not #GNUNET_NO)
837  * invalidates the respective transmission handle.
838  *
839  * @param cls
840  *        Closure.
841  * @param[in,out] data_size
842  *        Initially set to the number of bytes available in
843  *        @a data, should be set to the number of bytes written to data.
844  * @param[out] data
845  *        Where to write the body of the message to give to the
846  *        method. The function must copy at most @a data_size bytes to @a data.
847  *
848  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
849  *         #GNUNET_NO on success, if more data is to be transmitted later.
850  *         Should be used if @a data_size was not big enough to take all the
851  *         data.  If 0 is returned in @a data_size the transmission is paused,
852  *         and can be resumed with GNUNET_MULTICAST_member_to_origin_resume().
853  *         #GNUNET_YES if this completes the transmission (all data supplied)
854  * @deprecated should move to MQ-style API!
855  */
856 typedef int
857 (*GNUNET_MULTICAST_MemberTransmitNotify) (void *cls,
858                                           size_t *data_size,
859                                           void *data);
860
861
862 /**
863  * Handle for a message to be delivered from a member to the origin.
864  */
865 struct GNUNET_MULTICAST_MemberTransmitHandle;
866
867
868 /**
869  * Send a message to the origin of the multicast group.
870  *
871  * @param member
872  *        Membership handle.
873  * @param request_id
874  *        Application layer ID for the request.  Opaque to multicast.
875  * @param notify
876  *        Callback to call to get the message.
877  * @param notify_cls
878  *        Closure for @a notify.
879  *
880  * @return Handle to cancel request, NULL on error (i.e. request already pending).
881  * @deprecated should move to MQ-style API!
882  */
883 struct GNUNET_MULTICAST_MemberTransmitHandle *
884 GNUNET_MULTICAST_member_to_origin (struct GNUNET_MULTICAST_Member *member,
885                                    uint64_t request_id,
886                                    GNUNET_MULTICAST_MemberTransmitNotify notify,
887                                    void *notify_cls);
888
889
890 /**
891  * Resume message transmission to origin.
892  *
893  * @param th
894  *        Transmission to cancel.
895  */
896 void
897 GNUNET_MULTICAST_member_to_origin_resume (struct GNUNET_MULTICAST_MemberTransmitHandle *th);
898
899
900 /**
901  * Cancel request for message transmission to origin.
902  *
903  * @param th
904  *        Transmission to cancel.
905  */
906 void
907 GNUNET_MULTICAST_member_to_origin_cancel (struct GNUNET_MULTICAST_MemberTransmitHandle *th);
908
909
910 #if 0                           /* keep Emacsens' auto-indent happy */
911 {
912 #endif
913 #ifdef __cplusplus
914 }
915 #endif
916
917 /* ifndef GNUNET_MULTICAST_SERVICE_H */
918 #endif
919
920 /** @} */  /* end of group */