9502b9fd22f13fd2914fccb80cb3fd85a651a152
[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 GADS
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 (GADS)
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 ,
156 #endif
157
158 };
159
160
161 enum GNUNET_PSYC_MessageFlags
162 {
163   /**
164    * First fragment of a message.
165    */
166   GNUNET_PSYC_MESSAGE_FIRST_FRAGMENT = 1 << 0,
167
168   /**
169    * Last fragment of a message.
170    */
171   GNUNET_PSYC_MESSAGE_LAST_FRAGMENT = 1 << 1,
172
173   /** 
174    * OR'ed flags if message is not fragmented.
175    */
176   GNUNET_PSYC_MESSAGE_NOT_FRAGMENTED
177     = GNUNET_PSYC_MESSAGE_FIRST_FRAGMENT
178     | GNUNET_PSYC_MESSAGE_LAST_FRAGMENT,
179
180   /**
181    * Historic message, retrieved from PSYCstore.
182    */
183   GNUNET_PSYC_MESSAGE_HISTORIC = 1 << 30
184 };
185
186
187 /**
188  * M
189  */
190 struct GNUNET_PSYC_MessageMethod
191 {
192   /**
193    * Type: GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD
194    */
195   struct GNUNET_MessageHeader header;
196
197   uint32_t reserved GNUNET_PACKED;
198
199   /**
200    * Number of modifiers in the message.
201    */
202   uint32_t mod_count GNUNET_PACKED;
203
204   /**
205    * OR'ed GNUNET_PSYC_MasterTransmitFlags
206    */
207   uint32_t flags GNUNET_PACKED;
208
209   /**
210    * Sending slave's public key. NULL if the message is from the master, or when
211    * transmitting a message.
212    */
213   struct GNUNET_CRYPTO_EccPublicSignKey slave_key;
214
215   /* Followed by NUL-terminated method name. */
216 };
217
218
219 struct GNUNET_PSYC_MessageModifier
220 {
221   /**
222    * Type: GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER
223    */
224   struct GNUNET_MessageHeader header;
225
226   /**
227    * Size of value.
228    */
229   uint32_t value_size GNUNET_PACKED;
230
231   /**
232    * Size of name, including NUL terminator.
233    */
234   uint16_t name_size GNUNET_PACKED;
235
236   /**
237    * enum GNUNET_ENV_Operator
238    */
239   uint8_t oper;
240
241   /* Followed by NUL-terminated name, then the value. */
242 };
243
244
245 enum GNUNET_PSYC_DataStatus
246 {
247   /**
248    * To be continued.
249    */
250   GNUNET_PSYC_DATA_CONT = 0,
251
252   /**
253    * Reached the end of message.
254    */
255   GNUNET_PSYC_DATA_END = 1,
256
257   /**
258    * Cancelled before the end.
259    */
260   GNUNET_PSYC_DATA_CANCEL = 2
261 };
262
263
264 struct GNUNET_PSYC_MessageData
265 {
266   /**
267    * Type: GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER
268    */
269   struct GNUNET_MessageHeader header;
270
271   /**
272    * enum GNUNET_PSYC_DataStatus
273    */
274   uint8_t status;
275 };
276
277 /** 
278  * Handle that identifies a join request.
279  *
280  * Used to match calls to #GNUNET_PSYC_JoinCallback to the
281  * corresponding calls to GNUNET_PSYC_join_decision().
282  */
283 struct GNUNET_PSYC_JoinHandle;
284
285
286 /** 
287  * Method called from PSYC upon receiving a message indicating a call to a
288  * @e method.
289  *
290  * @param cls Closure.
291  * @param slave_key Who transmitted the message.
292  *        - NULL for multicast messages from the master.
293  *        - The sending slave's public key for unicast requests from one of the
294  *          slaves to the master.
295  * @param message_id Unique message counter for this message.
296  *        Unique only in combination with the given sender for this channel.
297  * @param method_name Method name from PSYC.
298  * @param modifier_count Number of elements in the @a modifiers array.
299  * @param modifiers State modifiers and transient variables for the message.
300  * @param data_offset Byte offset of @a data in the overall data of the method.
301  * @param data Data stream given to the method (might not be zero-terminated
302  *             if data is binary).
303  * @param data_size Number of bytes in @a data.
304  * @param frag Fragmentation status for the data.
305  */
306 typedef int
307 (*GNUNET_PSYC_Method) (void *cls,
308                        const struct GNUNET_CRYPTO_EccPublicSignKey *slave_key,
309                        uint64_t message_id,
310                        const char *method_name,
311                        size_t modifier_count,
312                        const struct GNUNET_ENV_Modifier *modifiers,
313                        uint64_t data_offset,
314                        const void *data,
315                        size_t data_size,
316                        enum GNUNET_PSYC_MessageFlags flags);
317
318
319 /** 
320  * Method called from PSYC upon receiving a join request.
321  *
322  * @param cls Closure.
323  * @param slave  requesting to join.
324  * @param method_name Method name in the join request.
325  * @param variable_count Number of elements in the @a variables array.
326  * @param variables Transient variables for the join request.
327  * @param data Data stream given to the method (might not be zero-terminated
328  *             if data is binary).
329  * @param data_size Number of bytes in @a data.
330  * @param jh Join handle to use with GNUNET_PSYC_join_decision()
331  */
332 typedef int
333 (*GNUNET_PSYC_JoinCallback) (void *cls,
334                              const struct GNUNET_CRYPTO_EccPublicSignKey
335                              *slave_key,
336                              const char *method_name,
337                              size_t variable_count,
338                              const struct GNUNET_ENV_Modifier *variables,
339                              const void *data,
340                              size_t data_size,
341                              struct GNUNET_PSYC_JoinHandle *jh);
342
343
344 /** 
345  * Function to call with the decision made for a join request.
346  *
347  * Must be called once and only once in response to an invocation of the
348  * #GNUNET_PSYC_JoinCallback.
349  *
350  * @param jh Join request handle.
351  * @param is_admitted #GNUNET_YES if joining is approved,
352  *        #GNUNET_NO if it is disapproved.
353  * @param relay_count Number of relays given.
354  * @param relays Array of suggested peers that might be useful relays to use
355  *        when joining the multicast group (essentially a list of peers that
356  *        are already part of the multicast group and might thus be willing
357  *        to help with routing).  If empty, only this local peer (which must
358  *        be the multicast origin) is a good candidate for building the
359  *        multicast tree.  Note that it is unnecessary to specify our own
360  *        peer identity in this array.
361  * @param method_name Method name for the message transmitted with the response.
362  * @param env Environment containing transient variables for the message,
363  *        or NULL.
364  * @param data Data of the message.
365  * @param data_size Size of @a data.
366  */
367 void
368 GNUNET_PSYC_join_decision (struct GNUNET_PSYC_JoinHandle *jh,
369                            int is_admitted,
370                            unsigned int relay_count,
371                            const struct GNUNET_PeerIdentity *relays,
372                            const char *method_name,
373                            const struct GNUNET_ENV_Environment *env,
374                            const void *data,
375                            size_t data_size);
376
377
378 /** 
379  * Handle for the master of a PSYC channel.
380  */
381 struct GNUNET_PSYC_Master;
382
383
384 /** 
385  * Function called after the channel master started.
386  *
387  * @param cls Closure.
388  * @param last_message_id Last message ID sent to the channel.
389  */
390 typedef void
391 (*GNUNET_PSYC_MasterStartCallback) (void *cls, uint64_t max_message_id);
392
393
394 /** 
395  * Start a PSYC master channel.
396  *
397  * Will start a multicast group identified by the given ECC key.  Messages
398  * received from group members will be given to the respective handler methods.
399  * If a new member wants to join a group, the "join" method handler will be
400  * invoked; the join handler must then generate a "join" message to approve the
401  * joining of the new member.  The channel can also change group membership
402  * without explicit requests.  Note that PSYC doesn't itself "understand" join
403  * or part messages, the respective methods must call other PSYC functions to
404  * inform PSYC about the meaning of the respective events.
405  *
406  * @param cfg Configuration to use (to connect to PSYC service).
407  * @param channel_key ECC key that will be used to sign messages for this
408  *        PSYC session. The public key is used to identify the PSYC channel.
409  *        Note that end-users will usually not use the private key directly, but
410  *        rather look it up in GADS for places managed by other users, or select
411  *        a file with the private key(s) when setting up their own channels
412  *        FIXME: we'll likely want to use NOT the p521 curve here, but a cheaper
413  *        one in the future.
414  * @param policy Channel policy specifying join and history restrictions.
415  *        Used to automate join decisions.
416  * @param method Function to invoke on messages received from slaves.
417  * @param join_cb Function to invoke when a peer wants to join.
418  * @param start_cb Function to invoke after the channel master started.
419  * @param cls Closure for @a method and @a join_cb.
420  * @return Handle for the channel master, NULL on error.
421  */
422 struct GNUNET_PSYC_Master *
423 GNUNET_PSYC_master_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
424                           const struct GNUNET_CRYPTO_EccPrivateKey *channel_key,
425                           enum GNUNET_PSYC_Policy policy,
426                           GNUNET_PSYC_Method method,
427                           GNUNET_PSYC_JoinCallback join_cb,
428                           GNUNET_PSYC_MasterStartCallback start_cb,
429                           void *cls);
430
431
432 /** 
433  * Function called to provide data for a transmission via PSYC.
434  *
435  * Note that returning #GNUNET_OK or #GNUNET_SYSERR (but not #GNUNET_NO)
436  * invalidates the respective transmission handle.
437  *
438  * @param cls Closure.
439  * @param message_id Set to the unique message ID that was generated for
440  *        this message.
441  * @param[in,out] data_size Initially set to the number of bytes available in
442  *        @a data, should be set to the number of bytes written to data.
443  * @param[out] data Where to write the body of the message to give to the
444  *         method. The function must copy at most @a data_size bytes to @a data.
445  * @return #GNUNET_SYSERR on error (fatal, aborts transmission)
446  *         #GNUNET_NO on success, if more data is to be transmitted later.
447  *         Should be used if @a data_size was not big enough to take all the
448  *         data.  If 0 is returned in @a data_size the transmission is paused,
449  *         and can be resumed with GNUNET_PSYC_master_transmit_resume().
450  *         #GNUNET_YES if this completes the transmission (all data supplied)
451  */
452 typedef int
453 (*GNUNET_PSYC_MasterTransmitNotify) (void *cls,
454                                      uint64_t message_id,
455                                      size_t *data_size,
456                                      void *data);
457
458
459 /**
460  * Flags for transmitting messages to a channel by the master.
461  */
462 enum GNUNET_PSYC_MasterTransmitFlags
463 {
464   GNUNET_PSYC_MASTER_TRANSMIT_NONE = 0,
465   /** 
466    * Whether this message should reset the channel state,
467    * i.e. remove all previously stored state variables.
468    */
469   GNUNET_PSYC_MASTER_TRANSMIT_RESET_STATE = 1 << 0,
470
471   /** 
472    * Whether we need to increment the group generation counter after
473    * transmitting this message.
474    */
475   GNUNET_PSYC_MASTER_TRANSMIT_INC_GROUP_GEN = 1 << 1,
476
477   /**
478    * Add PSYC header variable with the hash of the current channel state.
479    */
480   GNUNET_PSYC_MASTER_TRANSMIT_ADD_STATE_HASH = 1 << 2
481 };
482
483
484 /** 
485  * Handle for a pending PSYC transmission operation.
486  */
487 struct GNUNET_PSYC_MasterTransmitHandle;
488
489
490 /** 
491  * Send a message to call a method to all members in the PSYC channel.
492  *
493  * @param master Handle to the PSYC channel.
494  * @param method_name Which method should be invoked.
495  * @param env Environment containing state operations and transient variables
496  *            for the message, or NULL.
497  * @param notify Function to call to obtain the arguments.
498  * @param notify_cls Closure for @a notify.
499  * @param flags Flags for the message being transmitted.
500  * @return Transmission handle, NULL on error (i.e. more than one request queued).
501  */
502 struct GNUNET_PSYC_MasterTransmitHandle *
503 GNUNET_PSYC_master_transmit (struct GNUNET_PSYC_Master *master,
504                              const char *method_name,
505                              const struct GNUNET_ENV_Environment *env,
506                              GNUNET_PSYC_MasterTransmitNotify notify,
507                              void *notify_cls,
508                              enum GNUNET_PSYC_MasterTransmitFlags flags);
509
510
511 /** 
512  * Resume transmission to the channel.
513  *
514  * @param th Handle of the request that is being resumed.
515  */
516 void
517 GNUNET_PSYC_master_transmit_resume (struct GNUNET_PSYC_MasterTransmitHandle *th);
518
519
520 /** 
521  * Abort transmission request to channel.
522  *
523  * @param th Handle of the request that is being aborted.
524  */
525 void
526 GNUNET_PSYC_master_transmit_cancel (struct GNUNET_PSYC_MasterTransmitHandle *th);
527
528
529 /** 
530  * Stop a PSYC master channel.
531  *
532  * @param master PSYC channel master to stop.
533  */
534 void
535 GNUNET_PSYC_master_stop (struct GNUNET_PSYC_Master *master);
536
537
538 /** 
539  * Handle for a PSYC channel slave.
540  */
541 struct GNUNET_PSYC_Slave;
542
543
544 /** 
545  * Function called after the slave joined.
546  *
547  * @param cls Closure.
548  * @param max_message_id Last message ID sent to the channel.
549  */
550 typedef void
551 (*GNUNET_PSYC_SlaveJoinCallback) (void *cls, uint64_t max_message_id);
552
553
554 /** 
555  * Join a PSYC channel.
556  *
557  * The entity joining is always the local peer.  The user must immediately use
558  * the GNUNET_PSYC_slave_transmit() functions to transmit a @e join_msg to the
559  * channel; if the join request succeeds, the channel state (and @e recent
560  * method calls) will be replayed to the joining member.  There is no explicit
561  * notification on failure (as the channel may simply take days to approve,
562  * and disapproval is simply being ignored).
563  *
564  * @param cfg Configuration to use.
565  * @param channel_key ECC public key that identifies the channel we wish to join.
566  * @param slave_key ECC private-public key pair that identifies the slave, and
567  *        used by multicast to sign the join request and subsequent unicast
568  *        requests sent to the master.
569  * @param origin Peer identity of the origin.
570  * @param relay_count Number of peers in the @a relays array.
571  * @param relays Peer identities of members of the multicast group, which serve
572  *        as relays and used to join the group at.
573  * @param method Function to invoke on messages received from the channel,
574  *        typically at least contains functions for @e join and @e part.
575  * @param join_cb Function to invoke when a peer wants to join.
576  * @param cls Closure for @a method_cb and @a join_cb.
577  * @param method_name Method name for the join request.
578  * @param env Environment containing transient variables for the request, or NULL.
579  * @param data Payload for the join message.
580  * @param data_size Number of bytes in @a data.
581  * @return Handle for the slave, NULL on error.
582  */
583 struct GNUNET_PSYC_Slave *
584 GNUNET_PSYC_slave_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
585                         const struct GNUNET_CRYPTO_EccPublicSignKey *channel_key,
586                         const struct GNUNET_CRYPTO_EccPrivateKey *slave_key,
587                         const struct GNUNET_PeerIdentity *origin,
588                         size_t relay_count,
589                         const struct GNUNET_PeerIdentity *relays,
590                         GNUNET_PSYC_Method method,
591                         GNUNET_PSYC_JoinCallback join_cb,
592                         GNUNET_PSYC_SlaveJoinCallback slave_joined_cb,
593                         void *cls,
594                         const char *method_name,
595                         const struct GNUNET_ENV_Environment *env,
596                         const void *data,
597                         size_t data_size);
598
599
600 /** 
601  * Part a PSYC channel.
602  *
603  * Will terminate the connection to the PSYC service.  Polite clients should
604  * first explicitly send a @e part request (via GNUNET_PSYC_slave_transmit()).
605  *
606  * @param slave Slave handle.
607  */
608 void
609 GNUNET_PSYC_slave_part (struct GNUNET_PSYC_Slave *slave);
610
611
612 /** 
613  * Function called to provide data for a transmission to the channel master
614  * (a.k.a. the @e host of the channel).
615  *
616  * Note that returning #GNUNET_OK or #GNUNET_SYSERR (but not #GNUNET_NO)
617  * invalidates the respective transmission handle.
618  *
619  * @param cls Closure.
620  * @param[in,out] data_size Initially set to the number of bytes available in
621  *        @a data, should be set to the number of bytes written to data
622  *        (IN/OUT).
623  * @param[out] data Where to write the body of the message to give to the method;
624  *        function must copy at most @a *data_size bytes to @a data.
625  * @return #GNUNET_SYSERR on error (fatal, aborts transmission).
626  *         #GNUNET_NO on success, if more data is to be transmitted later.
627  *         #GNUNET_YES if this completes the transmission (all data supplied).
628  */
629 typedef int
630 (*GNUNET_PSYC_SlaveTransmitNotify) (void *cls,
631                                     size_t *data_size,
632                                     char *data);
633
634
635 /**
636  * Flags for transmitting messages to the channel master by a slave.
637  */
638 enum GNUNET_PSYC_SlaveTransmitFlags
639 {
640   GNUNET_PSYC_SLAVE_TRANSMIT_NONE = 0
641 };
642
643
644 /** 
645  * Handle for a pending PSYC transmission operation.
646  */
647 struct GNUNET_PSYC_SlaveTransmitHandle;
648
649
650 /** 
651  * Request a message to be sent to the channel master.
652  *
653  * @param slave Slave handle.
654  * @param method_name Which (PSYC) method should be invoked (on host).
655  * @param env Environment containing transient variables for the message, or NULL.
656  * @param notify Function to call when we are allowed to transmit (to get data).
657  * @param notify_cls Closure for @a notify.
658  * @param flags Flags for the message being transmitted.
659  * @return Transmission handle, NULL on error (i.e. more than one request queued).
660  */
661 struct GNUNET_PSYC_SlaveTransmitHandle *
662 GNUNET_PSYC_slave_transmit (struct GNUNET_PSYC_Slave *slave,
663                             const char *method_name,
664                             const struct GNUNET_ENV_Environment *env,
665                             GNUNET_PSYC_SlaveTransmitNotify notify,
666                             void *notify_cls,
667                             enum GNUNET_PSYC_SlaveTransmitFlags flags);
668
669
670 /** 
671  * Resume transmission to the master.
672  *
673  * @param th Handle of the request that is being resumed.
674  */
675 void
676 GNUNET_PSYC_slave_transmit_resume (struct GNUNET_PSYC_MasterTransmitHandle *th);
677
678
679 /** 
680  * Abort transmission request to master.
681  *
682  * @param th Handle of the request that is being aborted.
683  */
684 void
685 GNUNET_PSYC_slave_transmit_cancel (struct GNUNET_PSYC_SlaveTransmitHandle *th);
686
687
688 /** 
689  * Handle to access PSYC channel operations for both the master and slaves.
690  */
691 struct GNUNET_PSYC_Channel;
692
693
694 /** 
695  * Convert a channel @a master to a @e channel handle to access the @e channel
696  * APIs.
697  *
698  * @param master Channel master handle.
699  * @return Channel handle, valid for as long as @a master is valid.
700  */
701 struct GNUNET_PSYC_Channel *
702 GNUNET_PSYC_master_get_channel (struct GNUNET_PSYC_Master *master);
703
704
705 /** 
706  * Convert @a slave to a @e channel handle to access the @e channel APIs.
707  *
708  * @param slave Slave handle.
709  * @return Channel handle, valid for as long as @a slave is valid.
710  */
711 struct GNUNET_PSYC_Channel *
712 GNUNET_PSYC_slave_get_channel (struct GNUNET_PSYC_Slave *slave);
713
714
715 /** 
716  * Add a slave to the channel's membership list.
717  *
718  * Note that this will NOT generate any PSYC traffic, it will merely update the
719  * local database to modify how we react to <em>membership test</em> queries.
720  * The channel master still needs to explicitly transmit a @e join message to
721  * notify other channel members and they then also must still call this function
722  * in their respective methods handling the @e join message.  This way, how @e
723  * join and @e part operations are exactly implemented is still up to the
724  * application; for example, there might be a @e part_all method to kick out
725  * everyone.
726  *
727  * Note that channel slaves are explicitly trusted to execute such methods
728  * correctly; not doing so correctly will result in either denying other slaves
729  * access or offering access to channel data to non-members.
730  *
731  * @param channel Channel handle.
732  * @param slave_key Identity of channel slave to add.
733  * @param announced_at ID of the message that announced the membership change.
734  * @param effective_since Addition of slave is in effect since this message ID.
735  */
736 void
737 GNUNET_PSYC_channel_slave_add (struct GNUNET_PSYC_Channel *channel,
738                                const struct GNUNET_CRYPTO_EccPublicSignKey
739                                *slave_key,
740                                uint64_t announced_at,
741                                uint64_t effective_since);
742
743
744 /** 
745  * Remove a slave from the channel's membership list.
746  *
747  * Note that this will NOT generate any PSYC traffic, it will merely update the
748  * local database to modify how we react to <em>membership test</em> queries.
749  * The channel master still needs to explicitly transmit a @e part message to
750  * notify other channel members and they then also must still call this function
751  * in their respective methods handling the @e part message.  This way, how
752  * @e join and @e part operations are exactly implemented is still up to the
753  * application; for example, there might be a @e part_all message to kick out
754  * everyone.
755  *
756  * Note that channel members are explicitly trusted to perform these
757  * operations correctly; not doing so correctly will result in either
758  * denying members access or offering access to channel data to
759  * non-members.
760  *
761  * @param channel Channel handle.
762  * @param slave_key Identity of channel slave to remove.
763  * @param announced_at ID of the message that announced the membership change.
764  */
765 void
766 GNUNET_PSYC_channel_slave_remove (struct GNUNET_PSYC_Channel *channel,
767                                   const struct GNUNET_CRYPTO_EccPublicSignKey
768                                   *slave_key,
769                                   uint64_t announced_at);
770
771
772 /** 
773  * Function called to inform a member about stored state values for a channel.
774  *
775  * @param cls Closure.
776  * @param name Name of the state variable.  A NULL value indicates that there
777  *        are no more state variables to be returned.
778  * @param value Value of the state variable.
779  * @param value_size Number of bytes in @a value.
780  */
781 typedef void
782 (*GNUNET_PSYC_StateCallback) (void *cls,
783                               const char *name,
784                               const void *value,
785                               size_t value_size);
786
787
788 /**
789  * Function called when a requested operation has finished.
790  *
791  * @param cls Closure.
792  */
793 typedef void
794 (*GNUNET_PSYC_FinishCallback) (void *cls);
795
796
797 /** 
798  * Handle to a story telling operation.
799  */
800 struct GNUNET_PSYC_Story;
801
802
803 /** 
804  * Request to be told the message history of the channel.
805  *
806  * Historic messages (but NOT the state at the time) will be replayed (given to
807  * the normal method handlers) if available and if access is permitted.
808  *
809  * To get the latest message, use 0 for both the start and end message ID.
810  *
811  * @param channel Which channel should be replayed?
812  * @param start_message_id Earliest interesting point in history.
813  * @param end_message_id Last (exclusive) interesting point in history.
814  * @param method Function to invoke on messages received from the story.
815  * @param finish_cb Function to call when the requested story has been fully
816  *        told (counting message IDs might not suffice, as some messages
817  *        might be secret and thus the listener would not know the story is
818  *        finished without being told explicitly); once this function
819  *        has been called, the client must not call
820  *        GNUNET_PSYC_channel_story_tell_cancel() anymore.
821  * @param cls Closure for the callbacks.
822  * @return Handle to cancel story telling operation.
823  */
824 struct GNUNET_PSYC_Story *
825 GNUNET_PSYC_channel_story_tell (struct GNUNET_PSYC_Channel *channel,
826                                 uint64_t start_message_id,
827                                 uint64_t end_message_id,
828                                 GNUNET_PSYC_Method method,
829                                 GNUNET_PSYC_FinishCallback *finish_cb,
830                                 void *cls);
831
832
833 /** 
834  * Abort story telling.
835  *
836  * This function must not be called from within method handlers (as given to
837  * GNUNET_PSYC_slave_join()) of the slave.
838  *
839  * @param story Story telling operation to stop.
840  */
841 void
842 GNUNET_PSYC_channel_story_tell_cancel (struct GNUNET_PSYC_Story *story);
843
844
845 /**
846  * Handle for a state query operation.
847  */
848 struct GNUNET_PSYC_StateQuery;
849
850
851 /** 
852  * Retrieve the best matching channel state variable.
853  *
854  * If the requested variable name is not present in the state, the nearest
855  * less-specific name is matched; for example, requesting "_a_b" will match "_a"
856  * if "_a_b" does not exist.
857  *
858  * @param channel Channel handle.
859  * @param full_name Full name of the requested variable, the actual variable
860  *        returned might have a shorter name..
861  * @param cb Function called once when a matching state variable is found.
862  *        Not called if there's no matching state variable.
863  * @param cb_cls Closure for the callbacks.
864  * @return Handle that can be used to cancel the query operation.
865  */
866 struct GNUNET_PSYC_StateQuery *
867 GNUNET_PSYC_channel_state_get (struct GNUNET_PSYC_Channel *channel,
868                                const char *full_name,
869                                GNUNET_PSYC_StateCallback cb,
870                                void *cb_cls);
871
872
873 /** 
874  * Return all channel state variables whose name matches a given prefix.
875  *
876  * A name matches if it starts with the given @a name_prefix, thus requesting
877  * the empty prefix ("") will match all values; requesting "_a_b" will also
878  * return values stored under "_a_b_c".
879  *
880  * The @a state_cb is invoked on all matching state variables asynchronously, as
881  * the state is stored in and retrieved from the PSYCstore,
882  *
883  * @param channel Channel handle.
884  * @param name_prefix Prefix of the state variable name to match.
885  * @param cb Function to call with the matching state variables.
886  * @param cb_cls Closure for the callbacks.
887  * @return Handle that can be used to cancel the query operation.
888  */
889 struct GNUNET_PSYC_StateQuery *
890 GNUNET_PSYC_channel_state_get_prefix (struct GNUNET_PSYC_Channel *channel,
891                                       const char *name_prefix,
892                                       GNUNET_PSYC_StateCallback cb,
893                                       void *cb_cls);
894
895
896 /** 
897  * Cancel a state query operation.
898  *
899  * @param query Handle for the operation to cancel.
900  */
901 void
902 GNUNET_PSYC_channel_state_get_cancel (struct GNUNET_PSYC_StateQuery *query);
903
904
905 #if 0                           /* keep Emacsens' auto-indent happy */
906 {
907 #endif
908 #ifdef __cplusplus
909 }
910 #endif
911
912 /* ifndef GNUNET_PSYC_SERVICE_H */
913 #endif
914 /* end of gnunet_psyc_service.h */