PSYC: in-order delivery of fragments; tests for large messages
[oweals/gnunet.git] / src / include / gnunet_psyc_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_psyc_service.h
23  * @brief PSYC service; high-level access to the PSYC protocol
24  *        note that clients of this API are NOT expected to
25  *        understand the PSYC message format, only the semantics!
26  *        Parsing (and serializing) the PSYC stream format is done
27  *        within the implementation of the libgnunetpsyc library,
28  *        and this API deliberately exposes as little as possible
29  *        of the actual data stream format to the application!
30  * @author Christian Grothoff
31  * @author Gabor X Toth
32  *
33  * NOTE:
34  * - this API does not know about psyc's "root" and "places";
35  *   there is no 'root' in GNUnet-Psyc as we're decentralized;
36  *   'places' and 'persons' are combined within the same
37  *   abstraction, that of a "channel".  Channels are identified
38  *   and accessed in this API using a public/private key.
39  *   Higher-level applications should use NAMES within GNS
40  *   to obtain public keys, and the distinction between
41  *   'places' and 'persons' can then be made with the help
42  *   of the naming system (and/or conventions).
43  *   Channels are (as in PSYC) organized into a hierarchy; each
44  *   channel master (the one with the private key) is then
45  *   the operator of the multicast group (its Origin in
46  *   the terminology of the multicast API).
47  * - The API supports passing large amounts of data using
48  *   'streaming' for the argument passed to a method.  State
49  *   and variables must fit into memory and cannot be streamed
50  *   (thus, no passing of 4 GB of data in a variable;
51  *   once we implement this, we might want to create a
52  *   @c \#define for the maximum size of a variable).
53  * - PSYC defines standard variables, methods, etc.  This
54  *   library deliberately abstracts over all of these; a
55  *   higher-level API should combine the naming system (GNS)
56  *   and standard methods (message, join, part, warn,
57  *   fail, error) and variables (action, color, time,
58  *   tag, etc.).  However, this API does take over the
59  *   routing variables, specifically 'context' (channel),
60  *   and 'source'.  We only kind-of support 'target', as
61  *   the target is either everyone in the group or the
62  *   origin, and never just a single member of the group;
63  *   for such individual messages, an application needs to
64  *   construct an 'inbox' channel where the master (only)
65  *   receives messages (but never forwards; private responses
66  *   would be transmitted by joining the senders 'inbox'
67  *   channel -- or a inbox#bob subchannel).  The
68  *   goal for all of this is to keep the abstractions in this
69  *   API minimal: interaction with multicast, try \& slice,
70  *   state/variable/channel management.  Higher-level
71  *   operations belong elsewhere (so maybe this API should
72  *   be called 'PSYC-low', whereas a higher-level API
73  *   implementing defaults for standard methods and
74  *   variables might be called 'PSYC-std' or 'PSYC-high'.
75  */
76
77 #ifndef GNUNET_PSYC_SERVICE_H
78 #define GNUNET_PSYC_SERVICE_H
79
80 #ifdef __cplusplus
81 extern "C"
82 {
83 #if 0                           /* keep Emacsens' auto-indent happy */
84 }
85 #endif
86 #endif
87
88 #include "gnunet_util_lib.h"
89 #include "gnunet_env_lib.h"
90 #include "gnunet_multicast_service.h"
91
92
93 /**
94  * Version number of GNUnet-PSYC API.
95  */
96 #define GNUNET_PSYC_VERSION 0x00000000
97
98
99 /**
100  * Policy flags for a channel.
101  */
102 enum GNUNET_PSYC_ChannelFlags
103 {
104   /**
105    * Admission must be confirmed by the master.
106    */
107   GNUNET_PSYC_CHANNEL_ADMISSION_CONTROL = 1 << 0,
108
109   /**
110    * Past messages are only available to slaves who were admitted at the time
111    * they were sent to the channel.
112    */
113   GNUNET_PSYC_CHANNEL_RESTRICTED_HISTORY = 1 << 1
114 };
115
116 /**
117  * PSYC channel policies.
118  */
119 enum GNUNET_PSYC_Policy
120 {
121   /**
122    * Anyone can join the channel, without announcing his presence;
123    * all messages are always public and can be distributed freely.
124    * Joins may be announced, but this is not required.
125    */
126   GNUNET_PSYC_CHANNEL_ANONYMOUS = 0,
127
128   /**
129    * The master must approve membership to the channel, messages must only be
130    * distributed to current channel slaves.  This includes the channel
131    * state as well as transient messages.
132    */
133   GNUNET_PSYC_CHANNEL_PRIVATE
134     = GNUNET_PSYC_CHANNEL_ADMISSION_CONTROL
135     | GNUNET_PSYC_CHANNEL_RESTRICTED_HISTORY
136
137 #if IDEAS_FOR_FUTURE
138   /**
139    * Anyone can freely join the channel (no approval required);
140    * however, messages must only be distributed to current channel
141    * slaves, so the master must still acknowledge that the slave
142    * joined before transient messages are delivered.  As approval is
143    * guaranteed, the presistent channel state can be synchronized freely
144    * immediately, prior to master confirmation.
145    */
146   GNUNET_PSYC_CHANNEL_OPEN
147     = GNUNET_PSYC_CHANNEL_RESTRICTED_HISTORY,
148
149   /**
150    * The master must approve joins to the channel, but past messages can be
151    * freely distributed to slaves.
152    */
153   GNUNET_PSYC_CHANNEL_CLOSED
154     = GNUNET_PSYC_CHANNEL_ADMISSION_CONTROL,
155 #endif
156 };
157
158
159 enum GNUNET_PSYC_MessageFlags
160 {
161   /**
162    * Historic message, retrieved from PSYCstore.
163    */
164   GNUNET_PSYC_MESSAGE_HISTORIC = 1 << 0,
165
166   /**
167    * Request from slave to master.
168    */
169   GNUNET_PSYC_MESSAGE_REQUEST = 1 << 1
170 };
171
172 GNUNET_NETWORK_STRUCT_BEGIN
173
174 /**
175  * Header of a PSYC message.
176  */
177 struct GNUNET_PSYC_MessageHeader
178 {
179   /**
180    * Generic message header with size and type information.
181    */
182   struct GNUNET_MessageHeader header;
183
184   /**
185    * Flags for this message fragment.
186    *
187    * @see enum GNUNET_PSYC_MessageFlags
188    */
189   uint32_t flags GNUNET_PACKED;
190
191   /**
192    * Number of the message this message part belongs to.
193    */
194   uint64_t message_id GNUNET_PACKED;
195
196   /**
197    * Sending slave's public key.
198    * Not set if the message is from the master.
199    */
200   struct GNUNET_CRYPTO_EddsaPublicKey slave_key;
201
202   /* Followed by concatenated PSYC message parts:
203    * messages with GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_* types
204    */
205 };
206
207
208 /**
209  * The method of a message.
210  */
211 struct GNUNET_PSYC_MessageMethod
212 {
213   /**
214    * Type: GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD
215    */
216   struct GNUNET_MessageHeader header;
217
218   /**
219    * OR'ed GNUNET_PSYC_MasterTransmitFlags
220    */
221   uint32_t flags GNUNET_PACKED;
222
223   /* Followed by NUL-terminated method name. */
224 };
225
226
227 /**
228  * A modifier of a message.
229  */
230 struct GNUNET_PSYC_MessageModifier
231 {
232   /**
233    * Type: GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER
234    */
235   struct GNUNET_MessageHeader header;
236
237   /**
238    * Size of value.
239    */
240   uint32_t value_size GNUNET_PACKED;
241
242   /**
243    * Size of name, including NUL terminator.
244    */
245   uint16_t name_size GNUNET_PACKED;
246
247   /**
248    * enum GNUNET_ENV_Operator
249    */
250   uint8_t oper;
251
252   /* Followed by NUL-terminated name, then the value. */
253 };
254
255 GNUNET_NETWORK_STRUCT_END
256
257 #define GNUNET_PSYC_MODIFIER_MAX_PAYLOAD        \
258   GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD         \
259   - sizeof (struct GNUNET_PSYC_MessageModifier)
260
261 #define GNUNET_PSYC_MOD_CONT_MAX_PAYLOAD        \
262   GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD         \
263   - sizeof (struct GNUNET_MessageHeader)
264
265 #define GNUNET_PSYC_DATA_MAX_PAYLOAD            \
266   GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD         \
267   - sizeof (struct GNUNET_MessageHeader)
268
269 /**
270  * Handle that identifies a join request.
271  *
272  * Used to match calls to #GNUNET_PSYC_JoinCallback to the
273  * corresponding calls to GNUNET_PSYC_join_decision().
274  */
275 struct GNUNET_PSYC_JoinHandle;
276
277
278 /**
279  * Method called from PSYC upon receiving part of a message.
280  *
281  * @param cls Closure.
282  * @param msg Message part, one of the following types:
283  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_HEADER
284  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD
285  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER
286  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MOD_CONT
287  * - GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_DATA
288  */
289 typedef void
290 (*GNUNET_PSYC_MessageCallback) (void *cls,
291                                 uint64_t message_id,
292                                 uint32_t flags,
293                                 const struct GNUNET_MessageHeader *msg);
294
295
296 /**
297  * Method called from PSYC upon receiving a join request.
298  *
299  * @param cls Closure.
300  * @param slave  requesting to join.
301  * @param method_name Method name in the join request.
302  * @param variable_count Number of elements in the @a variables array.
303  * @param variables Transient variables for the join request.
304  * @param data Data stream given to the method (might not be zero-terminated
305  *             if data is binary).
306  * @param data_size Number of bytes in @a data.
307  * @param jh Join handle to use with GNUNET_PSYC_join_decision()
308  */
309 typedef void
310 (*GNUNET_PSYC_JoinCallback) (void *cls,
311                              const struct GNUNET_CRYPTO_EddsaPublicKey
312                              *slave_key,
313                              const char *method_name,
314                              size_t variable_count,
315                              const struct GNUNET_ENV_Modifier *variables,
316                              const void *data,
317                              size_t data_size,
318                              struct GNUNET_PSYC_JoinHandle *jh);
319
320
321 /**
322  * Function to call with the decision made for a join request.
323  *
324  * Must be called once and only once in response to an invocation of the
325  * #GNUNET_PSYC_JoinCallback.
326  *
327  * @param jh Join request handle.
328  * @param is_admitted #GNUNET_YES if joining is approved,
329  *        #GNUNET_NO if it is disapproved.
330  * @param relay_count Number of relays given.
331  * @param relays Array of suggested peers that might be useful relays to use
332  *        when joining the multicast group (essentially a list of peers that
333  *        are already part of the multicast group and might thus be willing
334  *        to help with routing).  If empty, only this local peer (which must
335  *        be the multicast origin) is a good candidate for building the
336  *        multicast tree.  Note that it is unnecessary to specify our own
337  *        peer identity in this array.
338  * @param method_name Method name for the message transmitted with the response.
339  * @param env Environment containing transient variables for the message,
340  *        or NULL.
341  * @param data Data of the message.
342  * @param data_size Size of @a data.
343  */
344 void
345 GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh,
346                            int is_admitted,
347                            uint32_t relay_count,
348                            const struct GNUNET_PeerIdentity *relays,
349                            const char *method_name,
350                            const struct GNUNET_ENV_Environment *env,
351                            const void *data,
352                            size_t data_size);
353
354
355 /**
356  * Handle for the master of a PSYC channel.
357  */
358 struct GNUNET_PSYC_Master;
359
360
361 /**
362  * Function called after the channel master started.
363  *
364  * @param cls Closure.
365  * @param last_message_id Last message ID sent to the channel.
366  */
367 typedef void
368 (*GNUNET_PSYC_MasterStartCallback) (void *cls, uint64_t max_message_id);
369
370
371 /**
372  * Start a PSYC master channel.
373  *
374  * Will start a multicast group identified by the given ECC key.  Messages
375  * received from group members will be given to the respective handler methods.
376  * If a new member wants to join a group, the "join" method handler will be
377  * invoked; the join handler must then generate a "join" message to approve the
378  * joining of the new member.  The channel can also change group membership
379  * without explicit requests.  Note that PSYC doesn't itself "understand" join
380  * or part messages, the respective methods must call other PSYC functions to
381  * inform PSYC about the meaning of the respective events.
382  *
383  * @param cfg Configuration to use (to connect to PSYC service).
384  * @param channel_key ECC key that will be used to sign messages for this
385  *        PSYC session. The public key is used to identify the PSYC channel.
386  *        Note that end-users will usually not use the private key directly, but
387  *        rather look it up in GNS for places managed by other users, or select
388  *        a file with the private key(s) when setting up their own channels
389  *        FIXME: we'll likely want to use NOT the p521 curve here, but a cheaper
390  *        one in the future.
391  * @param policy Channel policy specifying join and history restrictions.
392  *        Used to automate join decisions.
393  * @param message_cb Function to invoke on message parts received from slaves.
394  * @param join_cb Function to invoke when a peer wants to join.
395  * @param master_started_cb Function to invoke after the channel master started.
396  * @param cls Closure for @a method and @a join_cb.
397  * @return Handle for the channel master, NULL on error.
398  */
399 struct GNUNET_PSYC_Master *
400 GNUNET_PSYC_master_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
401                           const struct GNUNET_CRYPTO_EddsaPrivateKey *channel_key,
402                           enum GNUNET_PSYC_Policy policy,
403                           GNUNET_PSYC_MessageCallback message_cb,
404                           GNUNET_PSYC_JoinCallback join_cb,
405                           GNUNET_PSYC_MasterStartCallback master_started_cb,
406                           void *cls);
407
408
409 /**
410  * Function called to provide data for a transmission via PSYC.
411  *
412  * Note that returning #GNUNET_YES or #GNUNET_SYSERR (but not #GNUNET_NO)
413  * invalidates the respective transmission handle.
414  *
415  * @param cls Closure.
416  * @param[in,out] data_size Initially set to the number of bytes available in
417  *        @a data, should be set to the number of bytes written to data.
418  * @param[out] data Where to write the body of the message to give to the
419  *         method. The function must copy at most @a data_size bytes to @a data.
420  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
421  *         #GNUNET_NO on success, if more data is to be transmitted later.
422  *         Should be used if @a data_size was not big enough to take all the
423  *         data.  If 0 is returned in @a data_size the transmission is paused,
424  *         and can be resumed with GNUNET_PSYC_master_transmit_resume().
425  *         #GNUNET_YES if this completes the transmission (all data supplied)
426  */
427 typedef int
428 (*GNUNET_PSYC_TransmitNotifyData) (void *cls,
429                                    uint16_t *data_size,
430                                    void *data);
431
432 /**
433  * Function called to provide a modifier for a transmission via PSYC.
434  *
435  * Note that returning #GNUNET_YES or #GNUNET_SYSERR (but not #GNUNET_NO)
436  * invalidates the respective transmission handle.
437  *
438  * @param cls Closure.
439  * @param[in,out] data_size  Initially set to the number of bytes available in
440  *         @a data, should be set to the number of bytes written to data.
441  * @param[out] data  Where to write the modifier's name and value.
442  *         The function must copy at most @a data_size bytes to @a data.
443  *         When this callback is first called for a modifier, @a data should
444  *         contain: "name\0value".  If the whole value does not fit, subsequent
445  *         calls to this function should write continuations of the value to
446  *         @a data.
447  * @param[out] oper  Where to write the operator of the modifier.
448  *         Only needed during the first call to this callback at the beginning
449  *         of the modifier.  In case of subsequent calls asking for value
450  *         continuations @a oper is set to #NULL.
451  * @param[out] value_size  Where to write the full size of the value.
452  *         Only needed during the first call to this callback at the beginning
453  *         of the modifier.  In case of subsequent calls asking for value
454  *         continuations @a value_size is set to #NULL.
455  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
456  *         #GNUNET_NO on success, if more data is to be transmitted later.
457  *         Should be used if @a data_size was not big enough to take all the
458  *         data for the modifier's value (the name must be always returned
459  *         during the first call to this callback).
460  *         If 0 is returned in @a data_size the transmission is paused,
461  *         and can be resumed with GNUNET_PSYC_master_transmit_resume().
462  *         #GNUNET_YES if this completes the modifier (the whole value is supplied).
463  */
464 typedef int
465 (*GNUNET_PSYC_TransmitNotifyModifier) (void *cls,
466                                        uint16_t *data_size,
467                                        void *data,
468                                        uint8_t *oper,
469                                        uint32_t *value_size);
470
471 /**
472  * Flags for transmitting messages to a channel by the master.
473  */
474 enum GNUNET_PSYC_MasterTransmitFlags
475 {
476   GNUNET_PSYC_MASTER_TRANSMIT_NONE = 0,
477   /**
478    * Whether this message should reset the channel state,
479    * i.e. remove all previously stored state variables.
480    */
481   GNUNET_PSYC_MASTER_TRANSMIT_RESET_STATE = 1 << 0,
482
483   /**
484    * Whether we need to increment the group generation counter after
485    * transmitting this message.
486    */
487   GNUNET_PSYC_MASTER_TRANSMIT_INC_GROUP_GEN = 1 << 1,
488
489   /**
490    * Add PSYC header variable with the hash of the current channel state.
491    */
492   GNUNET_PSYC_MASTER_TRANSMIT_ADD_STATE_HASH = 1 << 2
493 };
494
495
496 /**
497  * Handle for a pending PSYC transmission operation.
498  */
499 struct GNUNET_PSYC_MasterTransmitHandle;
500
501
502 /**
503  * Send a message to call a method to all members in the PSYC channel.
504  *
505  * @param master Handle to the PSYC channel.
506  * @param method_name Which method should be invoked.
507  * @param notify_mod Function to call to obtain modifiers.
508  * @param notify_data Function to call to obtain fragments of the data.
509  * @param notify_cls Closure for @a notify_mod and @a notify_data.
510  * @param flags Flags for the message being transmitted.
511  * @return Transmission handle, NULL on error (i.e. more than one request queued).
512  */
513 struct GNUNET_PSYC_MasterTransmitHandle *
514 GNUNET_PSYC_master_transmit (struct GNUNET_PSYC_Master *master,
515                              const char *method_name,
516                              GNUNET_PSYC_TransmitNotifyModifier notify_mod,
517                              GNUNET_PSYC_TransmitNotifyData notify_data,
518                              void *notify_cls,
519                              enum GNUNET_PSYC_MasterTransmitFlags flags);
520
521
522 /**
523  * Resume transmission to the channel.
524  *
525  * @param th Handle of the request that is being resumed.
526  */
527 void
528 GNUNET_PSYC_master_transmit_resume (struct GNUNET_PSYC_MasterTransmitHandle *th);
529
530
531 /**
532  * Abort transmission request to channel.
533  *
534  * @param th Handle of the request that is being aborted.
535  */
536 void
537 GNUNET_PSYC_master_transmit_cancel (struct GNUNET_PSYC_MasterTransmitHandle *th);
538
539
540 /**
541  * Stop a PSYC master channel.
542  *
543  * @param master PSYC channel master to stop.
544  */
545 void
546 GNUNET_PSYC_master_stop (struct GNUNET_PSYC_Master *master);
547
548
549 /**
550  * Handle for a PSYC channel slave.
551  */
552 struct GNUNET_PSYC_Slave;
553
554
555 /**
556  * Function called after the slave joined.
557  *
558  * @param cls Closure.
559  * @param max_message_id Last message ID sent to the channel.
560  */
561 typedef void
562 (*GNUNET_PSYC_SlaveJoinCallback) (void *cls, uint64_t max_message_id);
563
564
565 /**
566  * Join a PSYC channel.
567  *
568  * The entity joining is always the local peer.  The user must immediately use
569  * the GNUNET_PSYC_slave_transmit() functions to transmit a @e join_msg to the
570  * channel; if the join request succeeds, the channel state (and @e recent
571  * method calls) will be replayed to the joining member.  There is no explicit
572  * notification on failure (as the channel may simply take days to approve,
573  * and disapproval is simply being ignored).
574  *
575  * @param cfg Configuration to use.
576  * @param channel_key ECC public key that identifies the channel we wish to join.
577  * @param slave_key ECC private-public key pair that identifies the slave, and
578  *        used by multicast to sign the join request and subsequent unicast
579  *        requests sent to the master.
580  * @param origin Peer identity of the origin.
581  * @param relay_count Number of peers in the @a relays array.
582  * @param relays Peer identities of members of the multicast group, which serve
583  *        as relays and used to join the group at.
584  * @param message_cb Function to invoke on message parts received from the
585  *        channel, typically at least contains method handlers for @e join and
586  *        @e part.
587  * @param join_cb function invoked once we have joined with the current
588  *        message ID of the channel
589  * @param slave_joined_cb Function to invoke when a peer wants to join.
590  * @param cls Closure for @a message_cb and @a slave_joined_cb.
591  * @param method_name Method name for the join request.
592  * @param env Environment containing transient variables for the request, or NULL.
593  * @param data Payload for the join message.
594  * @param data_size Number of bytes in @a data.
595  * @return Handle for the slave, NULL on error.
596  */
597 struct GNUNET_PSYC_Slave *
598 GNUNET_PSYC_slave_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
599                         const struct GNUNET_CRYPTO_EddsaPublicKey *channel_key,
600                         const struct GNUNET_CRYPTO_EddsaPrivateKey *slave_key,
601                         const struct GNUNET_PeerIdentity *origin,
602                         uint32_t relay_count,
603                         const struct GNUNET_PeerIdentity *relays,
604                         GNUNET_PSYC_MessageCallback message_cb,
605                         GNUNET_PSYC_JoinCallback join_cb,
606                         GNUNET_PSYC_SlaveJoinCallback slave_joined_cb,
607                         void *cls,
608                         const char *method_name,
609                         const struct GNUNET_ENV_Environment *env,
610                         const void *data,
611                         uint16_t data_size);
612
613
614 /**
615  * Part a PSYC channel.
616  *
617  * Will terminate the connection to the PSYC service.  Polite clients should
618  * first explicitly send a part request (via GNUNET_PSYC_slave_transmit()).
619  *
620  * @param slave Slave handle.
621  */
622 void
623 GNUNET_PSYC_slave_part (struct GNUNET_PSYC_Slave *slave);
624
625
626 /**
627  * Flags for transmitting messages to the channel master by a slave.
628  */
629 enum GNUNET_PSYC_SlaveTransmitFlags
630 {
631   GNUNET_PSYC_SLAVE_TRANSMIT_NONE = 0
632 };
633
634
635 /**
636  * Handle for a pending PSYC transmission operation.
637  */
638 struct GNUNET_PSYC_SlaveTransmitHandle;
639
640
641 /**
642  * Request a message to be sent to the channel master.
643  *
644  * @param slave Slave handle.
645  * @param method_name Which (PSYC) method should be invoked (on host).
646  * @param notify_mod Function to call to obtain modifiers.
647  * @param notify_data Function to call to obtain fragments of the data.
648  * @param notify_cls Closure for @a notify.
649  * @param flags Flags for the message being transmitted.
650  * @return Transmission handle, NULL on error (i.e. more than one request queued).
651  */
652 struct GNUNET_PSYC_SlaveTransmitHandle *
653 GNUNET_PSYC_slave_transmit (struct GNUNET_PSYC_Slave *slave,
654                             const char *method_name,
655                             GNUNET_PSYC_TransmitNotifyModifier notify_mod,
656                             GNUNET_PSYC_TransmitNotifyData notify_data,
657                             void *notify_cls,
658                             enum GNUNET_PSYC_SlaveTransmitFlags flags);
659
660
661 /**
662  * Resume transmission to the master.
663  *
664  * @param th Handle of the request that is being resumed.
665  */
666 void
667 GNUNET_PSYC_slave_transmit_resume (struct GNUNET_PSYC_SlaveTransmitHandle *th);
668
669
670 /**
671  * Abort transmission request to master.
672  *
673  * @param th Handle of the request that is being aborted.
674  */
675 void
676 GNUNET_PSYC_slave_transmit_cancel (struct GNUNET_PSYC_SlaveTransmitHandle *th);
677
678
679 /**
680  * Handle to access PSYC channel operations for both the master and slaves.
681  */
682 struct GNUNET_PSYC_Channel;
683
684
685 /**
686  * Convert a channel @a master to a @e channel handle to access the @e channel
687  * APIs.
688  *
689  * @param master Channel master handle.
690  * @return Channel handle, valid for as long as @a master is valid.
691  */
692 struct GNUNET_PSYC_Channel *
693 GNUNET_PSYC_master_get_channel (struct GNUNET_PSYC_Master *master);
694
695
696 /**
697  * Convert @a slave to a @e channel handle to access the @e channel APIs.
698  *
699  * @param slave Slave handle.
700  * @return Channel handle, valid for as long as @a slave is valid.
701  */
702 struct GNUNET_PSYC_Channel *
703 GNUNET_PSYC_slave_get_channel (struct GNUNET_PSYC_Slave *slave);
704
705
706 /**
707  * Add a slave to the channel's membership list.
708  *
709  * Note that this will NOT generate any PSYC traffic, it will merely update the
710  * local database to modify how we react to <em>membership test</em> queries.
711  * The channel master still needs to explicitly transmit a @e join message to
712  * notify other channel members and they then also must still call this function
713  * in their respective methods handling the @e join message.  This way, how @e
714  * join and @e part operations are exactly implemented is still up to the
715  * application; for example, there might be a @e part_all method to kick out
716  * everyone.
717  *
718  * Note that channel slaves are explicitly trusted to execute such methods
719  * correctly; not doing so correctly will result in either denying other slaves
720  * access or offering access to channel data to non-members.
721  *
722  * @param channel Channel handle.
723  * @param slave_key Identity of channel slave to add.
724  * @param announced_at ID of the message that announced the membership change.
725  * @param effective_since Addition of slave is in effect since this message ID.
726  */
727 void
728 GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel,
729                                const struct GNUNET_CRYPTO_EddsaPublicKey *slave_key,
730                                uint64_t announced_at,
731                                uint64_t effective_since);
732
733
734 /**
735  * Remove a slave from the channel's membership list.
736  *
737  * Note that this will NOT generate any PSYC traffic, it will merely update the
738  * local database to modify how we react to <em>membership test</em> queries.
739  * The channel master still needs to explicitly transmit a @e part message to
740  * notify other channel members and they then also must still call this function
741  * in their respective methods handling the @e part message.  This way, how
742  * @e join and @e part operations are exactly implemented is still up to the
743  * application; for example, there might be a @e part_all message to kick out
744  * everyone.
745  *
746  * Note that channel members are explicitly trusted to perform these
747  * operations correctly; not doing so correctly will result in either
748  * denying members access or offering access to channel data to
749  * non-members.
750  *
751  * @param channel Channel handle.
752  * @param slave_key Identity of channel slave to remove.
753  * @param announced_at ID of the message that announced the membership change.
754  */
755 void
756 GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel,
757                                   const struct GNUNET_CRYPTO_EddsaPublicKey
758                                   *slave_key,
759                                   uint64_t announced_at);
760
761
762 /**
763  * Function called to inform a member about stored state values for a channel.
764  *
765  * @param cls Closure.
766  * @param name Name of the state variable.  A NULL value indicates that there
767  *        are no more state variables to be returned.
768  * @param value Value of the state variable.
769  * @param value_size Number of bytes in @a value.
770  */
771 typedef void
772 (*GNUNET_PSYC_StateCallback) (void *cls,
773                               const char *name,
774                               const void *value,
775                               size_t value_size);
776
777
778 /**
779  * Function called when a requested operation has finished.
780  *
781  * @param cls Closure.
782  */
783 typedef void
784 (*GNUNET_PSYC_FinishCallback) (void *cls);
785
786
787 /**
788  * Handle to a story telling operation.
789  */
790 struct GNUNET_PSYC_Story;
791
792
793 /**
794  * Request to be told the message history of the channel.
795  *
796  * Historic messages (but NOT the state at the time) will be replayed (given to
797  * the normal method handlers) if available and if access is permitted.
798  *
799  * To get the latest message, use 0 for both the start and end message ID.
800  *
801  * @param channel Which channel should be replayed?
802  * @param start_message_id Earliest interesting point in history.
803  * @param end_message_id Last (exclusive) interesting point in history.
804  * @param message_cb Function to invoke on message parts received from the story.
805  * @param finish_cb Function to call when the requested story has been fully
806  *        told (counting message IDs might not suffice, as some messages
807  *        might be secret and thus the listener would not know the story is
808  *        finished without being told explicitly); once this function
809  *        has been called, the client must not call
810  *        GNUNET_PSYC_channel_story_tell_cancel() anymore.
811  * @param cls Closure for the callbacks.
812  * @return Handle to cancel story telling operation.
813  */
814 struct GNUNET_PSYC_Story *
815 GNUNET_PSYC_channel_story_tell (struct GNUNET_PSYC_Channel *channel,
816                                 uint64_t start_message_id,
817                                 uint64_t end_message_id,
818                                 GNUNET_PSYC_MessageCallback message_cb,
819                                 GNUNET_PSYC_FinishCallback finish_cb,
820                                 void *cls);
821
822
823 /**
824  * Abort story telling.
825  *
826  * This function must not be called from within method handlers (as given to
827  * GNUNET_PSYC_slave_join()) of the slave.
828  *
829  * @param story Story telling operation to stop.
830  */
831 void
832 GNUNET_PSYC_channel_story_tell_cancel (struct GNUNET_PSYC_Story *story);
833
834
835 /**
836  * Handle for a state query operation.
837  */
838 struct GNUNET_PSYC_StateQuery;
839
840
841 /**
842  * Retrieve the best matching channel state variable.
843  *
844  * If the requested variable name is not present in the state, the nearest
845  * less-specific name is matched; for example, requesting "_a_b" will match "_a"
846  * if "_a_b" does not exist.
847  *
848  * @param channel Channel handle.
849  * @param full_name Full name of the requested variable, the actual variable
850  *        returned might have a shorter name..
851  * @param cb Function called once when a matching state variable is found.
852  *        Not called if there's no matching state variable.
853  * @param cb_cls Closure for the callbacks.
854  * @return Handle that can be used to cancel the query operation.
855  */
856 struct GNUNET_PSYC_StateQuery *
857 GNUNET_PSYC_channel_state_get (struct GNUNET_PSYC_Channel *channel,
858                                const char *full_name,
859                                GNUNET_PSYC_StateCallback cb,
860                                void *cb_cls);
861
862
863 /**
864  * Return all channel state variables whose name matches a given prefix.
865  *
866  * A name matches if it starts with the given @a name_prefix, thus requesting
867  * the empty prefix ("") will match all values; requesting "_a_b" will also
868  * return values stored under "_a_b_c".
869  *
870  * The @a state_cb is invoked on all matching state variables asynchronously, as
871  * the state is stored in and retrieved from the PSYCstore,
872  *
873  * @param channel Channel handle.
874  * @param name_prefix Prefix of the state variable name to match.
875  * @param cb Function to call with the matching state variables.
876  * @param cb_cls Closure for the callbacks.
877  * @return Handle that can be used to cancel the query operation.
878  */
879 struct GNUNET_PSYC_StateQuery *
880 GNUNET_PSYC_channel_state_get_prefix (struct GNUNET_PSYC_Channel *channel,
881                                       const char *name_prefix,
882                                       GNUNET_PSYC_StateCallback cb,
883                                       void *cb_cls);
884
885
886 /**
887  * Cancel a state query operation.
888  *
889  * @param query Handle for the operation to cancel.
890  */
891 void
892 GNUNET_PSYC_channel_state_get_cancel (struct GNUNET_PSYC_StateQuery *query);
893
894
895 #if 0                           /* keep Emacsens' auto-indent happy */
896 {
897 #endif
898 #ifdef __cplusplus
899 }
900 #endif
901
902 /* ifndef GNUNET_PSYC_SERVICE_H */
903 #endif
904 /* end of gnunet_psyc_service.h */