Adapting verify successor code to use trail id
[oweals/gnunet.git] / src / include / gnunet_multicast_service.h
1 /*
2      This file is part of GNUnet.
3      (C) 2012, 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_multicast_service.h
23  * @brief multicast service; establish tunnels to distant peers
24  * @author Christian Grothoff
25  * @author Gabor X Toth
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_EddsaPublicKey member_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_EddsaSignature 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 Join request handle.
246  * @param is_admitted  #GNUNET_YES    if the join is approved,
247  *                     #GNUNET_NO     if it is disapproved,
248  *                     #GNUNET_SYSERR if we cannot answer the request.
249  * @param relay_count Number of relays given.
250  * @param relays Array of suggested peers that might be useful relays to use
251  *        when joining the multicast group (essentially a list of peers that
252  *        are already part of the multicast group and might thus be willing
253  *        to help with routing).  If empty, only this local peer (which must
254  *        be the multicast origin) is a good candidate for building the
255  *        multicast tree.  Note that it is unnecessary to specify our own
256  *        peer identity in this array.
257  * @param join_resp  Message to send in response to the joining peer;
258  *        can also be used to redirect the peer to a different group at the
259  *        application layer; this response is to be transmitted to the
260  *        peer that issued the request even if admission is denied.
261  */
262 struct GNUNET_MULTICAST_ReplayHandle *
263 GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
264                                 int is_admitted,
265                                 uint16_t relay_count,
266                                 const struct GNUNET_PeerIdentity *relays,
267                                 const struct GNUNET_MessageHeader *join_resp);
268
269
270 /**
271  * Method called whenever another peer wants to join the multicast group.
272  *
273  * Implementations of this function must call GNUNET_MULTICAST_join_decision()
274  * with the decision.
275  *
276  * @param cls  Closure.
277  * @param member_key  Public key of the member requesting join.
278  * @param join_msg  Application-dependent join message from the new member.
279  * @param jh  Join handle to pass to GNUNET_MULTICAST_join_decison().
280  */
281 typedef void
282 (*GNUNET_MULTICAST_JoinRequestCallback) (void *cls,
283                                          const struct GNUNET_CRYPTO_EddsaPublicKey *member_key,
284                                          const struct GNUNET_MessageHeader *join_msg,
285                                          struct GNUNET_MULTICAST_JoinHandle *jh);
286
287
288 /**
289  * Method called to inform about the decision in response to a join request.
290  *
291  * If @a is_admitted is not #GNUNET_YES, then the multicast service disconnects
292  * the client and the multicast member handle returned by
293  * GNUNET_MULTICAST_member_join() is invalidated.
294  *
295  * @param cls  Closure.
296  * @param is_admitted  #GNUNET_YES or #GNUNET_NO or #GNUNET_SYSERR
297  * @param peer  The peer we are connected to and the join decision is from.
298  * @param relay_count  Number of peers in the @a relays array.
299  * @param relays  Peer identities of members of the group, which serve as relays
300  *        and can be used to join the group at.  If empty, only the origin can
301  *        be used to connect to the group.
302  * @param join_msg  Application-dependent join message from the origin.
303  */
304 typedef void
305 (*GNUNET_MULTICAST_JoinDecisionCallback) (void *cls,
306                                           int is_admitted,
307                                           const struct GNUNET_PeerIdentity *peer,
308                                           uint16_t relay_count,
309                                           const struct GNUNET_PeerIdentity *relays,
310                                           const struct GNUNET_MessageHeader *join_msg);
311
312
313 /**
314  * Handle to pass back for the answer of a membership test.
315  */
316 struct GNUNET_MULTICAST_MembershipTestHandle;
317
318
319 /**
320  * Call informing multicast about the decision taken for a membership test.
321  *
322  * @param mth Handle that was given for the query.
323  * @param result #GNUNET_YES if peer was a member, #GNUNET_NO if peer was not a member,
324  *        #GNUNET_SYSERR if we cannot answer the membership test.
325  */
326 void
327 GNUNET_MULTICAST_membership_test_result (struct GNUNET_MULTICAST_MembershipTestHandle *mth,
328                                          int result);
329
330
331 /**
332  * Method called to test if a member was in the group at a particular time.
333  *
334  * It is called when a replay request is received to determine if the requested
335  * message can be replayed.
336  *
337  * @param cls Closure.
338  * @param member_key Identity of the member that we want to test.
339  * @param message_id Message ID for which to perform the test.
340  * @param group_generation Group generation of the message. It has relevance if
341  *        the message consists of multiple fragments with different group
342  *        generations.
343  * @param mth Handle to give to GNUNET_MULTICAST_membership_test_answer().
344  */
345 typedef void
346 (*GNUNET_MULTICAST_MembershipTestCallback) (void *cls,
347                                             const struct GNUNET_CRYPTO_EddsaPublicKey *member_key,
348                                             uint64_t message_id,
349                                             uint64_t group_generation,
350                                             struct GNUNET_MULTICAST_MembershipTestHandle *mth);
351
352
353 /**
354  * Function called whenever a group member has transmitted a request
355  * to the origin (other than joining or leaving).
356  *
357  * FIXME: need to distinguish between origin cancelling a message (some fragments
358  * were sent, then the rest 'discarded') and the case where we got disconnected;
359  * right now, both would mean 'msg' is NULL, but they could be quite different...
360  * So the semantics from the receiver side of
361  * GNUNET_MULTICAST_member_to_origin_cancel() are not clear here.   Maybe we
362  * should do something with the flags in this case?
363  *
364  * @param cls Closure (set from GNUNET_MULTICAST_origin_start).
365  * @param sender Identity of the sender.
366  * @param req Request to the origin.
367  * @param flags Flags for the request.
368  */
369 typedef void
370 (*GNUNET_MULTICAST_RequestCallback) (void *cls,
371                                      const struct GNUNET_CRYPTO_EddsaPublicKey *member_key,
372                                      const struct GNUNET_MessageHeader *req,
373                                      enum GNUNET_MULTICAST_MessageFlags flags);
374
375
376 /**
377  * Function called whenever a group member is receiving a message fragment from
378  * the origin.
379  *
380  * If admission to the group is denied, this function is called once with the
381  * response of the @e origin (as given to GNUNET_MULTICAST_join_decision()) and
382  * then a second time with NULL to indicate that the connection failed for good.
383  *
384  * FIXME: need to distinguish between origin cancelling a message (some fragments
385  * were sent, then the rest 'discarded') and the case where we got disconnected;
386  * right now, both would mean 'msg' is NULL, but they could be quite different...
387  * So the semantics from the receiver side of
388  * GNUNET_MULTICAST_origin_to_all_cancel() are not clear here.
389  *
390  * @param cls Closure (set from GNUNET_MULTICAST_member_join())
391  * @param msg Message from the origin, NULL if the origin shut down
392  *        (or we were kicked out, and we should thus call
393  *        GNUNET_MULTICAST_member_part() next)
394  */
395 typedef void
396 (*GNUNET_MULTICAST_MessageCallback) (void *cls,
397                                      const struct GNUNET_MessageHeader *msg);
398
399
400 /**
401  * Function called with the result of an asynchronous operation.
402  *
403  * @see GNUNET_MULTICAST_replay_fragment()
404  *
405  * @param result Result of the operation.
406  */
407 typedef void
408 (*GNUNET_MULTICAST_ResultCallback) (void *cls,
409                                     int result);
410
411
412 /**
413  * Opaque handle to a replay request from the multicast service.
414  */
415 struct GNUNET_MULTICAST_ReplayHandle;
416
417
418 /**
419  * Functions with this signature are called whenever the multicast service needs
420  * a message fragment to be replayed by fragment_id.
421  *
422  * Implementations of this function MUST call GNUNET_MULTICAST_replay() ONCE
423  * (with a message or an error); however, if the origin is destroyed or the
424  * group is left, the replay handle must no longer be used.
425  *
426  * @param cls Closure (set from GNUNET_MULTICAST_origin_start()
427  *        or GNUNET_MULTICAST_member_join()).
428  * @param member_key The member requesting replay.
429  * @param fragment_id Which message fragment should be replayed.
430  * @param flags Flags for the replay.
431  * @param rh Handle to pass to message transmit function.
432  */
433 typedef void
434 (*GNUNET_MULTICAST_ReplayFragmentCallback) (void *cls,
435                                             const struct GNUNET_CRYPTO_EddsaPublicKey *member_key,
436                                             uint64_t fragment_id,
437                                             uint64_t flags,
438                                             struct GNUNET_MULTICAST_ReplayHandle *rh);
439
440 /**
441  * Functions with this signature are called whenever the multicast service needs
442  * a message fragment to be replayed by message_id and fragment_offset.
443  *
444  * Implementations of this function MUST call GNUNET_MULTICAST_replay() ONCE
445  * (with a message or an error); however, if the origin is destroyed or the
446  * group is left, the replay handle must no longer be used.
447  *
448  * @param cls Closure (set from GNUNET_MULTICAST_origin_start()
449  *        or GNUNET_MULTICAST_member_join()).
450  * @param member_key The member requesting replay.
451  * @param message_id Which message should be replayed.
452  * @param fragment_offset Offset of the fragment within of @a message_id to be replayed.
453  * @param flags Flags for the replay.
454  * @param rh Handle to pass to message transmit function.
455  */
456 typedef void
457 (*GNUNET_MULTICAST_ReplayMessageCallback) (void *cls,
458                                            const struct GNUNET_CRYPTO_EddsaPublicKey *member_key,
459                                            uint64_t message_id,
460                                            uint64_t fragment_offset,
461                                            uint64_t flags,
462                                            struct GNUNET_MULTICAST_ReplayHandle *rh);
463
464
465 /**
466  * Possible error codes during replay.
467  */
468 enum GNUNET_MULTICAST_ReplayErrorCode
469 {
470
471   /**
472    * Everything is fine.
473    */
474   GNUNET_MULTICAST_REC_OK = 0,
475
476   /**
477    * Message fragment not found in the message store.
478    *
479    * Either discarded if it is too old, or not arrived yet if this member has
480    * missed some messages.
481    */
482   GNUNET_MULTICAST_REC_NOT_FOUND = 1,
483
484   /**
485    * Fragment ID counter was larger than the highest counter this
486    * replay function has ever encountered; thus it is likely the
487    * origin never sent it and we're at the HEAD of the multicast
488    * stream as far as this node is concerned.
489    *
490    * FIXME: needed?
491    */
492   GNUNET_MULTICAST_REC_PAST_HEAD = 2,
493
494   /**
495    * Access is denied to the requested fragment, membership test did not pass.
496    */
497   GNUNET_MULTICAST_REC_ACCESS_DENIED = 3,
498
499   /**
500    * Internal error (i.e. database error).  Try some other peer.
501    */
502   GNUNET_MULTICAST_REC_INTERNAL_ERROR = 4
503
504 };
505
506
507 /**
508  * Replay a message fragment for the multicast group.
509  *
510  * @param rh Replay handle identifying which replay operation was requested.
511  * @param msg Replayed message fragment, NULL if unknown/error.
512  * @param ec Error code.
513  */
514 void
515 GNUNET_MULTICAST_replay_response (struct GNUNET_MULTICAST_ReplayHandle *rh,
516                                   const struct GNUNET_MessageHeader *msg,
517                                   enum GNUNET_MULTICAST_ReplayErrorCode ec);
518
519
520 /**
521  * Indicate the end of the replay session.
522  *
523  * Invalidates the replay handle.
524  *
525  * @param rh Replay session to end.
526  */
527 void
528 GNUNET_MULTICAST_replay_response_end (struct GNUNET_MULTICAST_ReplayHandle *rh);
529
530
531 /**
532  * Function called to provide data for a transmission for a replay.
533  *
534  * @see GNUNET_MULTICAST_replay2()
535  */
536 typedef int
537 (*GNUNET_MULTICAST_ReplayTransmitNotify) (void *cls,
538                                           size_t *data_size,
539                                           void *data);
540
541
542 /**
543  * Replay a message for the multicast group.
544  *
545  * @param rh Replay handle identifying which replay operation was requested.
546  * @param notify Function to call to get the message.
547  * @param notify_cls Closure for @a notify.
548  */
549 void
550 GNUNET_MULTICAST_replay_response2 (struct GNUNET_MULTICAST_ReplayHandle *rh,
551                                    GNUNET_MULTICAST_ReplayTransmitNotify notify,
552                                    void *notify_cls);
553
554
555 /**
556  * Start a multicast group.
557  *
558  * Will advertise the origin in the P2P overlay network under the respective
559  * public key so that other peer can find this peer to join it.  Peers that
560  * issue GNUNET_MULTICAST_member_join() can then transmit a join request to
561  * either an existing group member or to the origin.  If the joining is
562  * approved, the member is cleared for @e replay and will begin to receive
563  * messages transmitted to the group.  If joining is disapproved, the failed
564  * candidate will be given a response.  Members in the group can send messages
565  * to the origin (one at a time).
566  *
567  * @param cfg Configuration to use.
568  * @param priv_key ECC key that will be used to sign messages for this
569  *        multicast session; public key is used to identify the multicast group;
570  * @param max_fragment_id  Maximum fragment ID already sent to the group.
571  *        0 for a new group.
572  * @param join_request_cb Function called to approve / disapprove joining of a peer.
573  * @param member_test_cb Function multicast can use to test group membership.
574  * @param replay_frag_cb Function that can be called to replay a message fragment.
575  * @param replay_msg_cb Function that can be called to replay a message.
576  * @param request_cb Function called with message fragments from group members.
577  * @param message_cb Function called with the message fragments sent to the
578  *        network by GNUNET_MULTICAST_origin_to_all().  These message fragments
579  *        should be stored for answering replay requests later.
580  * @param cls Closure for the various callbacks that follow.
581  * @return Handle for the origin, NULL on error.
582  */
583 struct GNUNET_MULTICAST_Origin *
584 GNUNET_MULTICAST_origin_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
585                                const struct GNUNET_CRYPTO_EddsaPrivateKey *priv_key,
586                                uint64_t max_fragment_id,
587                                GNUNET_MULTICAST_JoinRequestCallback join_request_cb,
588                                GNUNET_MULTICAST_MembershipTestCallback member_test_cb,
589                                GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
590                                GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
591                                GNUNET_MULTICAST_RequestCallback request_cb,
592                                GNUNET_MULTICAST_MessageCallback message_cb,
593                                void *cls);
594
595 /**
596  * Function called to provide data for a transmission from the origin to all
597  * members.
598  *
599  * Note that returning #GNUNET_OK or #GNUNET_SYSERR (but not #GNUNET_NO)
600  * invalidates the respective transmission handle.
601  *
602  * @param cls Closure.
603  * @param[in,out] data_size 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 Where to write the body of the message to give to the
606  *         method. The function must copy at most @a data_size bytes to @a data.
607  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
608  *         #GNUNET_NO on success, if more data is to be transmitted later.
609  *         Should be used if @a data_size was not big enough to take all the
610  *         data.  If 0 is returned in @a data_size the transmission is paused,
611  *         and can be resumed with GNUNET_MULTICAST_origin_to_all_resume().
612  *         #GNUNET_YES if this completes the transmission (all data supplied)
613  */
614 typedef int
615 (*GNUNET_MULTICAST_OriginTransmitNotify) (void *cls,
616                                           size_t *data_size,
617                                           void *data);
618
619
620 /**
621  * Handle for a request to send a message to all multicast group members
622  * (from the origin).
623  */
624 struct GNUNET_MULTICAST_OriginTransmitHandle;
625
626
627 /**
628  * Send a message to the multicast group.
629  *
630  * @param origin Handle to the multicast group.
631  * @param message_id Application layer ID for the message.  Opaque to multicast.
632  * @param group_generation Group generation of the message.  Documented in
633  *             GNUNET_MULTICAST_MessageHeader.
634  * @param notify Function to call to get the message.
635  * @param notify_cls Closure for @a notify.
636  * @return NULL on error (i.e. request already pending).
637  */
638 struct GNUNET_MULTICAST_OriginTransmitHandle *
639 GNUNET_MULTICAST_origin_to_all (struct GNUNET_MULTICAST_Origin *origin,
640                                 uint64_t message_id,
641                                 uint64_t group_generation,
642                                 GNUNET_MULTICAST_OriginTransmitNotify notify,
643                                 void *notify_cls);
644
645
646
647 /**
648  * Resume message transmission to multicast group.
649  *
650  * @param th  Transmission to cancel.
651  */
652 void
653 GNUNET_MULTICAST_origin_to_all_resume (struct GNUNET_MULTICAST_OriginTransmitHandle *th);
654
655
656 /**
657  * Cancel request for message transmission to multicast group.
658  *
659  * @param th  Transmission to cancel.
660  */
661 void
662 GNUNET_MULTICAST_origin_to_all_cancel (struct GNUNET_MULTICAST_OriginTransmitHandle *th);
663
664
665 /**
666  * Stop a multicast group.
667  *
668  * @param origin Multicast group to stop.
669  */
670 void
671 GNUNET_MULTICAST_origin_stop (struct GNUNET_MULTICAST_Origin *origin);
672
673
674 /**
675  * Join a multicast group.
676  *
677  * The entity joining is always the local peer.  Further information about the
678  * candidate can be provided in @a join_msg.  If the join fails, the
679  * @a message_cb is invoked with a (failure) response and then with NULL.  If
680  * the join succeeds, outstanding (state) messages and ongoing multicast
681  * messages will be given to the @a message_cb until the member decides to part
682  * the group.  The @a mem_test_cb and @a replay_cb functions may be called at
683  * anytime by the multicast service to support relaying messages to other
684  * members of the group.
685  *
686  * @param cfg Configuration to use.
687  * @param group_key ECC public key that identifies the group to join.
688  * @param member_key ECC key that identifies the member and used to sign
689  *        requests sent to the origin.
690  * @param origin Peer ID of the origin to send unicast requsets to.  If NULL,
691  *        unicast requests are sent back via multiple hops on the reverse path
692  *        of multicast messages.
693  * @param relay_count Number of peers in the @a relays array.
694  * @param relays Peer identities of members of the group, which serve as relays
695  *        and can be used to join the group at and send the @a join_request to.
696  *        If empty, the @a join_request is sent directly to the @a origin.
697  * @param join_msg  Application-dependent join message to be passed to the
698  *        @a origin.
699  * @param join_request_cb Function called to approve / disapprove joining of a peer.
700  * @param join_decision_cb Function called to inform about the join decision.
701  * @param mem_test_cb Function multicast can use to test group membership.
702  * @param replay_frag_cb Function that can be called to replay message fragments
703  *        this peer already knows from this group. NULL if this
704  *        client is unable to support replay.
705  * @param replay_msg_cb Function that can be called to replay message fragments
706  *        this peer already knows from this group. NULL if this
707  *        client is unable to support replay.
708  * @param message_cb Function to be called for all message fragments we
709  *        receive from the group, excluding those our @a replay_cb
710  *        already has.
711  * @param cls Closure for callbacks.
712  * @return Handle for the member, NULL on error.
713  */
714 struct GNUNET_MULTICAST_Member *
715 GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
716                               const struct GNUNET_CRYPTO_EddsaPublicKey *group_key,
717                               const struct GNUNET_CRYPTO_EddsaPrivateKey *member_key,
718                               const struct GNUNET_PeerIdentity *origin,
719                               uint16_t relay_count,
720                               const struct GNUNET_PeerIdentity *relays,
721                               const struct GNUNET_MessageHeader *join_request,
722                               GNUNET_MULTICAST_JoinRequestCallback join_request_cb,
723                               GNUNET_MULTICAST_JoinDecisionCallback join_decision_cb,
724                               GNUNET_MULTICAST_MembershipTestCallback mem_test_cb,
725                               GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
726                               GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
727                               GNUNET_MULTICAST_MessageCallback message_cb,
728                               void *cls);
729
730 /**
731  * Handle for a replay request.
732  */
733 struct GNUNET_MULTICAST_MemberReplayHandle;
734
735
736 /**
737  * Request a fragment to be replayed by fragment ID.
738  *
739  * Useful if messages below the @e max_known_fragment_id given when joining are
740  * needed and not known to the client.
741  *
742  * @param member Membership handle.
743  * @param fragment_id ID of a message fragment that this client would like to
744           see replayed.
745  * @param flags Additional flags for the replay request.  It is used and defined
746  *        by the replay callback.  FIXME: which replay callback? FIXME: use enum?
747  *        FIXME: why not pass reply cb here?
748  * @return Replay request handle, NULL on error.
749  */
750 struct GNUNET_MULTICAST_MemberReplayHandle *
751 GNUNET_MULTICAST_member_replay_fragment (struct GNUNET_MULTICAST_Member *member,
752                                          uint64_t fragment_id,
753                                          uint64_t flags);
754
755
756 /**
757  * Request a message fr to be replayed.
758  *
759  * Useful if messages below the @e max_known_fragment_id given when joining are
760  * needed and not known to the client.
761  *
762  * @param member Membership handle.
763  * @param message_id ID of the message this client would like to see replayed.
764  * @param fragment_offset Offset of the fragment within the message to replay.
765  * @param flags Additional flags for the replay request.  It is used & defined
766  *        by the replay callback.
767  * @param result_cb Function to be called for the replayed message.
768  * @param result_cb_cls Closure for @a result_cb.
769  * @return Replay request handle, NULL on error.
770  */
771 struct GNUNET_MULTICAST_MemberReplayHandle *
772 GNUNET_MULTICAST_member_replay_message (struct GNUNET_MULTICAST_Member *member,
773                                         uint64_t message_id,
774                                         uint64_t fragment_offset,
775                                         uint64_t flags,
776                                         GNUNET_MULTICAST_ResultCallback result_cb,
777                                         void *result_cb_cls);
778
779
780 /**
781  * Cancel a replay request.
782  *
783  * @param rh Request to cancel.
784  */
785 void
786 GNUNET_MULTICAST_member_replay_cancel (struct GNUNET_MULTICAST_MemberReplayHandle *rh);
787
788
789 /**
790  * Part a multicast group.
791  *
792  * Disconnects from all group members and invalidates the @a member handle.
793  *
794  * An application-dependent part message can be transmitted beforehand using
795  * #GNUNET_MULTICAST_member_to_origin())
796  *
797  * @param member Membership handle.
798  */
799 void
800 GNUNET_MULTICAST_member_part (struct GNUNET_MULTICAST_Member *member);
801
802
803 /**
804  * Function called to provide data for a transmission from a member to the origin.
805  *
806  * Note that returning #GNUNET_OK or #GNUNET_SYSERR (but not #GNUNET_NO)
807  * invalidates the respective transmission handle.
808  *
809  * @param cls Closure.
810  * @param[in,out] data_size Initially set to the number of bytes available in
811  *        @a data, should be set to the number of bytes written to data.
812  * @param[out] data Where to write the body of the message to give to the
813  *         method. The function must copy at most @a data_size bytes to @a data.
814  *
815  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
816  *         #GNUNET_NO on success, if more data is to be transmitted later.
817  *         Should be used if @a data_size was not big enough to take all the
818  *         data.  If 0 is returned in @a data_size the transmission is paused,
819  *         and can be resumed with GNUNET_MULTICAST_member_to_origin_resume().
820  *         #GNUNET_YES if this completes the transmission (all data supplied)
821  */
822 typedef int
823 (*GNUNET_MULTICAST_MemberTransmitNotify) (void *cls,
824                                           size_t *data_size,
825                                           void *data);
826
827
828 /**
829  * Handle for a message to be delivered from a member to the origin.
830  */
831 struct GNUNET_MULTICAST_MemberTransmitHandle;
832
833
834 /**
835  * Send a message to the origin of the multicast group.
836  *
837  * @param member Membership handle.
838  * @param request_id Application layer ID for the request.  Opaque to multicast.
839  * @param notify Callback to call to get the message.
840  * @param notify_cls Closure for @a notify.
841  *
842  * @return Handle to cancel request, NULL on error (i.e. request already pending).
843  */
844 struct GNUNET_MULTICAST_MemberTransmitHandle *
845 GNUNET_MULTICAST_member_to_origin (struct GNUNET_MULTICAST_Member *member,
846                                    uint64_t request_id,
847                                    GNUNET_MULTICAST_MemberTransmitNotify notify,
848                                    void *notify_cls);
849
850
851 /**
852  * Resume message transmission to origin.
853  *
854  * @param th  Transmission to cancel.
855  */
856 void
857 GNUNET_MULTICAST_member_to_origin_resume (struct GNUNET_MULTICAST_MemberTransmitHandle *th);
858
859
860 /**
861  * Cancel request for message transmission to origin.
862  *
863  * @param th  Transmission to cancel.
864  */
865 void
866 GNUNET_MULTICAST_member_to_origin_cancel (struct GNUNET_MULTICAST_MemberTransmitHandle *th);
867
868
869 #if 0                           /* keep Emacsens' auto-indent happy */
870 {
871 #endif
872 #ifdef __cplusplus
873 }
874 #endif
875
876 /* ifndef GNUNET_MULTICAST_SERVICE_H */
877 #endif
878 /* end of gnunet_multicast_service.h */