Merged silc_1_1_branch to trunk.
[silc.git] / lib / silccore / silcpacket.h
1 /*
2
3   silcpacket.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2007 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 /****h* silccore/SILC Packet Engine Interface
21  *
22  * DESCRIPTION
23  *
24  * The SILC secure binary packet protocol interface, provides interface for
25  * sending and receiving SILC packets.  The interface provides a packet
26  * engine, that can be used to receive packets from packet streams, and
27  * routines for sending all kinds of SILC packets.
28  *
29  * The packet engine and packet stream are thread safe.  They can be safely
30  * used in multi threaded environment.
31  *
32  ***/
33
34 #ifndef SILCPACKET_H
35 #define SILCPACKET_H
36
37 /* Maximum packet length */
38 #define SILC_PACKET_MAX_LEN 0xffff
39
40 /* Maximum length of ID */
41 #define SILC_PACKET_MAX_ID_LEN 28
42
43 /****d* silccore/SilcPacketAPI/SilcPacketType
44  *
45  * NAME
46  *
47  *    typedef SilcUInt8 SilcPacketType;
48  *
49  * DESCRIPTION
50  *
51  *    SILC packet type definition and all the packet types.
52  *
53  * SOURCE
54  */
55 typedef SilcUInt8 SilcPacketType;
56
57 /* SILC Packet types. */
58 #define SILC_PACKET_DISCONNECT           1       /* Disconnection */
59 #define SILC_PACKET_SUCCESS              2       /* Success */
60 #define SILC_PACKET_FAILURE              3       /* Failure */
61 #define SILC_PACKET_REJECT               4       /* Rejected */
62 #define SILC_PACKET_NOTIFY               5       /* Notify message */
63 #define SILC_PACKET_ERROR                6       /* Error message */
64 #define SILC_PACKET_CHANNEL_MESSAGE      7       /* Message for channel */
65 #define SILC_PACKET_CHANNEL_KEY          8       /* Key of the channel */
66 #define SILC_PACKET_PRIVATE_MESSAGE      9       /* Private message */
67 #define SILC_PACKET_PRIVATE_MESSAGE_KEY  10      /* Private message key*/
68 #define SILC_PACKET_COMMAND              11      /* Command */
69 #define SILC_PACKET_COMMAND_REPLY        12      /* Reply to a command */
70 #define SILC_PACKET_KEY_EXCHANGE         13      /* Start of KE */
71 #define SILC_PACKET_KEY_EXCHANGE_1       14      /* KE1 */
72 #define SILC_PACKET_KEY_EXCHANGE_2       15      /* KE2 */
73 #define SILC_PACKET_CONNECTION_AUTH_REQUEST 16   /* Request of auth meth */
74 #define SILC_PACKET_CONNECTION_AUTH      17      /* Connectinon auth */
75 #define SILC_PACKET_NEW_ID               18      /* Sending new ID */
76 #define SILC_PACKET_NEW_CLIENT           19      /* Client registering */
77 #define SILC_PACKET_NEW_SERVER           20      /* Server registering */
78 #define SILC_PACKET_NEW_CHANNEL          21      /* Channel registering */
79 #define SILC_PACKET_REKEY                22      /* Re-key start */
80 #define SILC_PACKET_REKEY_DONE           23      /* Re-key done */
81 #define SILC_PACKET_HEARTBEAT            24      /* Heartbeat */
82 #define SILC_PACKET_KEY_AGREEMENT        25      /* Key Agreement request */
83 #define SILC_PACKET_RESUME_ROUTER        26      /* Backup router resume */
84 #define SILC_PACKET_FTP                  27      /* File Transfer */
85 #define SILC_PACKET_RESUME_CLIENT        28      /* Client resume */
86 #define SILC_PACKET_ACK                  29      /* Acknowledgement */
87
88 #define SILC_PACKET_PRIVATE              200     /* Private range start  */
89 #define SILC_PACKET_MAX                  255     /* RESERVED */
90
91 #define SILC_PACKET_NONE                 0       /* RESERVED */
92 #define SILC_PACKET_ANY                  0
93 /***/
94
95 /****d* silccore/SilcPacketAPI/SilcPacketFlags
96  *
97  * NAME
98  *
99  *    typedef SilcUInt8 SilcPacketFlags;
100  *
101  * DESCRIPTION
102  *
103  *    SILC packet flags type definition and all the packet flags.
104  *
105  * SOURCE
106  */
107 typedef SilcUInt8 SilcPacketFlags;
108
109 /* All defined packet flags */
110 #define SILC_PACKET_FLAG_NONE             0x00    /* No flags */
111 #define SILC_PACKET_FLAG_PRIVMSG_KEY      0x01    /* Private message key */
112 #define SILC_PACKET_FLAG_LIST             0x02    /* Packet is a list */
113 #define SILC_PACKET_FLAG_BROADCAST        0x04    /* Packet is a broadcast */
114 #define SILC_PACKET_FLAG_COMPRESSED       0x08    /* Payload is compressed */
115 #define SILC_PACKET_FLAG_ACK              0x10    /* Acknowledge packet */
116
117 /* Impelemntation specific flags */
118 #define SILC_PACKET_FLAG_LONG_PAD         0x20    /* Use maximum padding */
119 /***/
120
121 /****s* silccore/SilcPacketAPI/SilcPacketEngine
122  *
123  * NAME
124  *
125  *    typedef struct SilcPacketEngineStruct *SilcPacketEngine;
126  *
127  * DESCRIPTION
128  *
129  *    The packet engine context, allocated by silc_packet_engine_start.
130  *    The engine is destroyed with silc_packet_engine_stop.
131  *
132  ***/
133 typedef struct SilcPacketEngineStruct *SilcPacketEngine;
134
135 /****s* silccore/SilcPacketAPI/SilcPacketStream
136  *
137  * NAME
138  *
139  *    typedef struct SilcPacketStreamStruct *SilcPacketStream;
140  *
141  * DESCRIPTION
142  *
143  *    The packet stream context, allocated by silc_packet_stream_create.
144  *    The stream is destroyed with silc_packet_stream_destroy.
145  *
146  ***/
147 typedef struct SilcPacketStreamStruct *SilcPacketStream;
148
149 /****s* silccore/SilcPacketAPI/SilcPacket
150  *
151  * NAME
152  *
153  *    typedef struct SilcPacketStruct *SilcPacket;
154  *
155  * DESCRIPTION
156  *
157  *    The SilcPacket is returned by the packet engine in the SilcPacketReceive
158  *    callback.  The application can parse the data payload from the
159  *    SilcPacket.  Also packet type, flags, and sender and destination
160  *    IDs are available.  The application must free the packet with the
161  *    silc_packet_free function if it takes it in for processing.
162  *
163  *    The `buffer' field contains the parsed packet payload and the start
164  *    of the data area will point to the start of the packet payload.
165  *
166  *    The list pointer `next' can be used by the application to put the
167  *    packet context in a list during processing, if needed.
168  *
169  * SOURCE
170  */
171 typedef struct SilcPacketStruct {
172   struct SilcPacketStruct *next;     /* List pointer, application may set */
173   SilcPacketStream stream;           /* Packet stream this packet is from */
174   SilcBufferStruct buffer;           /* Packet data payload */
175   unsigned char *src_id;             /* Source ID */
176   unsigned char *dst_id;             /* Destination ID */
177   unsigned int src_id_len  : 6;      /* Source ID length */
178   unsigned int src_id_type : 2;      /* Source ID type */
179   unsigned int dst_id_len  : 6;      /* Destination ID length */
180   unsigned int dst_id_type : 2;      /* Destination ID type */
181   SilcPacketType type;               /* Packet type */
182   SilcPacketFlags flags;             /* Packet flags */
183 } *SilcPacket;
184 /***/
185
186 /****d* silcutil/SilcPacketAPI/SilcPacketError
187  *
188  * NAME
189  *
190  *    typedef enum { ... } SilcPacketError
191  *
192  * DESCRIPTION
193  *
194  *    Packet errors.  This is returned in the error callback.  If application
195  *    needs the actual lower level stream error, it needs to retrieve it
196  *    from the actual stream.  It can retrieve the underlaying stream from
197  *    the packet stream by calling silc_packet_stream_get_stream function.
198  *
199  *    You may retrieve string version of the SilcPacketError by calling
200  *    silc_packet_error_string.
201  *
202  * SOURCE
203  */
204 typedef enum {
205   SILC_PACKET_ERR_READ,                  /* Error while reading */
206   SILC_PACKET_ERR_WRITE,                 /* Error while writing */
207   SILC_PACKET_ERR_MAC_FAILED,            /* Packet MAC check failed */
208   SILC_PACKET_ERR_DECRYPTION_FAILED,     /* Packet decryption failed */
209   SILC_PACKET_ERR_UNKNOWN_SID,           /* Unknown SID (with IV included) */
210   SILC_PACKET_ERR_MALFORMED,             /* Packet is malformed */
211   SILC_PACKET_ERR_NO_MEMORY,             /* System out of memory */
212 } SilcPacketError;
213 /***/
214
215 /****f* silccore/SilcPacketAPI/SilcPacketReceiveCb
216  *
217  * SYNOPSIS
218  *
219  *    typedef SilcBool (*SilcPacketReceiveCb)(SilcPacketEngine engine,
220  *                                            SilcPacketStream stream,
221  *                                            SilcPacket packet,
222  *                                            void *callback_context,
223  *                                            void *stream_context);
224  *
225  * DESCRIPTION
226  *
227  *    The packet receive callback is called by the packet engine when a new
228  *    SILC Packet has arrived.  The application must free the returned
229  *    SilcPacket with silc_packet_free if it takes the packet in for
230  *    processing.  This callback is set in the SilcPacketCallbacks structure.
231  *    The `callback_context' is the context set as argument in the
232  *    silc_packet_engine_start function.  The `stream_context' is stream
233  *    specific context that was set by calling silc_packet_set_context.
234  *
235  *    If the application takes the received packet `packet' into processing
236  *    TRUE must be returned.  If FALSE is returned the packet engine will
237  *    pass the packet to other packet processor, if one has been linked
238  *    to the stream with silc_packet_stream_link function.  If no extra
239  *    processor is linked the packet is dropped.
240  *
241  * EXAMPLE
242  *
243  *    SilcBool
244  *    silc_foo_packet_receive_cb(SilcPacketEngine engine,
245  *                               SilcPacketStream stream, SilcPacket packet,
246  *                               void *callback_context, void *stream_context)
247  *    {
248  *      Application ctx = callback_context;
249  *
250  *      // If we're not up yet, let's not process the packet
251  *      if (ctx->initialized == FALSE)
252  *        return FALSE;
253  *
254  *      // Process the incoming packet...
255  *      ...
256  *
257  *      // It's our packet now, no one else will get it
258  *      return TRUE;
259  *    }
260  *
261  ***/
262 typedef SilcBool (*SilcPacketReceiveCb)(SilcPacketEngine engine,
263                                         SilcPacketStream stream,
264                                         SilcPacket packet,
265                                         void *callback_context,
266                                         void *stream_context);
267
268 /****f* silccore/SilcPacketAPI/SilcPacketEosCb
269  *
270  * SYNOPSIS
271  *
272  *    typedef void (*SilcPacketEosCb)(SilcPacketEngine engine,
273  *                                    SilcPacketStream stream,
274  *                                    void *callback_context,
275  *                                    void *stream_context);
276  *
277  * DESCRIPTION
278  *
279  *    The End Of Stream (EOS) callback, that is called by the packet engine
280  *    when the underlaying stream has ended.  No more data can be sent to
281  *    the stream or read from it.  The `stream' must be destroyed by
282  *    calling the silc_packet_stream_destroy.  This callback is set in the
283  *    SilcPacketCallbacks structure.
284  *
285  ***/
286 typedef void (*SilcPacketEosCb)(SilcPacketEngine engine,
287                                 SilcPacketStream stream,
288                                 void *callback_context,
289                                 void *stream_context);
290
291 /****f* silccore/SilcPacketAPI/SilcPacketErrorCb
292  *
293  * SYNOPSIS
294  *
295  *    typedef void (*SilcPacketErrorCb)(SilcPacketEngine engine,
296  *                                      SilcPacketStream stream,
297  *                                      SilcPacketError error,
298  *                                      void *callback_context,
299  *                                      void *stream_context);
300  *
301  * DESCRIPTION
302  *
303  *    The error callback that is called by the packet engine if an error
304  *    occurs.  The `error' will indicate the error.  This callback is set
305  *    in the SilcPacketCallbacks structure.
306  *
307  ***/
308 typedef void (*SilcPacketErrorCb)(SilcPacketEngine engine,
309                                   SilcPacketStream stream,
310                                   SilcPacketError error,
311                                   void *callback_context,
312                                   void *stream_context);
313
314 /****s* silccore/SilcPacketAPI/SilcPacketCallbacks
315  *
316  * NAME
317  *
318  *    typedef struct { ... } *SilcPacketCallbacks;
319  *
320  * DESCRIPTION
321  *
322  *    This structure is sent as argument to the silc_packet_engine_start
323  *    function to set the callback functions for the packet engine.  The
324  *    packet engine will call the callbacks when necessary.  Application
325  *    must always be provided for the packet engine.
326  *
327  * SOURCE
328  */
329 typedef struct {
330   SilcPacketReceiveCb packet_receive;    /* Called when packet is received */
331   SilcPacketEosCb eos;                   /* Called on end of stream */
332   SilcPacketErrorCb error;               /* Called on an error */
333 } SilcPacketCallbacks;
334 /***/
335
336 /* Prototypes */
337
338 /****f* silccore/SilcPacketAPI/silc_packet_engine_start
339  *
340  * SYNOPSIS
341  *
342  *    SilcPacketEngine
343  *    silc_packet_engine_start(SilcRng rng, SilcBool router,
344  *                             SilcPacketCallbacks *callbacks,
345  *                             void *callback_context);
346  *
347  * DESCRIPTION
348  *
349  *    Create new packet engine for processing incoming and outgoing packets.
350  *    If `router' is  TRUE then the application is considered to be router
351  *    server, and certain packets are handled differently.  Client and normal
352  *    server must set it to FALSE.  The `callbacks' is a SilcPacketCallbacks
353  *    structure provided by the caller which includes the callbacks that is
354  *    called when for example packet is received, or end of stream is called.
355  *
356  * NOTES
357  *
358  *    The packet engine is thread safe.  You can use one packet engine in
359  *    multi threaded application.
360  *
361  ***/
362 SilcPacketEngine
363 silc_packet_engine_start(SilcRng rng, SilcBool router,
364                          SilcPacketCallbacks *callbacks,
365                          void *callback_context);
366
367 /****f* silccore/SilcPacketAPI/silc_packet_engine_stop
368  *
369  * SYNOPSIS
370  *
371  *    void silc_packet_engine_stop(SilcPacketEngine engine);
372  *
373  * DESCRIPTION
374  *
375  *    Stop the packet engine.  No new packets can be sent or received after
376  *    calling this, and the `engine' will become invalid.
377  *
378  ***/
379 void silc_packet_engine_stop(SilcPacketEngine engine);
380
381 /****f* silccore/SilcPacketAPI/silc_packet_error_string
382  *
383  * SYNOPSIS
384  *
385  *    const char *silc_packet_error_string(SilcPacketError error);
386  *
387  * DESCRIPTION
388  *
389  *    Return the packet error as string.
390  *
391  ***/
392 const char *silc_packet_error_string(SilcPacketError error);
393
394 /****f* silccore/SilcPacketAPI/silc_packet_engine_get_streams
395  *
396  * SYNOPSIS
397  *
398  *    SilcDList silc_packet_engine_get_streams(SilcPacketEngine engine);
399  *
400  * DESCRIPTION
401  *
402  *    Returns list of packet streams added to the packet engine.  The caller
403  *    must free the list with silc_packet_engine_free_streams_list.
404  *
405  ***/
406 SilcDList silc_packet_engine_get_streams(SilcPacketEngine engine);
407
408 /****f* silccore/SilcPacketAPI/silc_packet_engine_free_streams_list
409  *
410  * SYNOPSIS
411  *
412  *    void silc_packet_engine_free_streams_list(SilcDList streams);
413  *
414  * DESCRIPTION
415  *
416  *    Free's the streams list returned by silc_packet_engine_get_streams.
417  *
418  ***/
419 void silc_packet_engine_free_streams_list(SilcDList streams);
420
421 /****f* silccore/SilcPacketAPI/silc_packet_stream_create
422  *
423  * SYNOPSIS
424  *
425  *    SilcPacketStream silc_packet_stream_create(SilcPacketEngine engine,
426  *                                               SilcSchedule schedule,
427  *                                               SilcStream stream);
428  *
429  * DESCRIPTION
430  *
431  *    Create new packet stream and use the `stream' as underlaying stream.
432  *    Usually the `stream' would be a socket stream, but it can be any
433  *    stream.  After this function returns, packets can immediately be
434  *    sent to and received from the stream.
435  *
436  * NOTES
437  *
438  *    SilcPacketStream cannot be used with silc_stream_* routines (such as
439  *    silc_stream_read and silc_stream_write) because of its special nature.
440  *    Use the silc_packet_send and the silc_packet_send_ext to send packets.
441  *    To read packets you will receive the packet receive callback from
442  *    packet engine.  Destroy the stream with silc_packet_stream_destroy.
443  *
444  *    The SilcPacketStream is thread safe.  Same context can be safely used
445  *    in multi threaded environment.
446  *
447  ***/
448 SilcPacketStream silc_packet_stream_create(SilcPacketEngine engine,
449                                            SilcSchedule schedule,
450                                            SilcStream stream);
451
452 /****f* silccore/SilcPacketAPI/silc_packet_stream_add_remote
453  *
454  * SYNOPSIS
455  *
456  *    SilcPacketStream silc_packet_stream_add_remote(SilcPacketStream stream,
457  *                                                   const char *remote_ip,
458  *                                                   SilcUInt16 remote_port,
459  *                                                   SilcPacket packet);
460  *
461  * DESCRIPTION
462  *
463  *    This function is used to add remote receivers in packet stream `stream'
464  *    that has UDP/IP socket stream as the underlaying stream.  This function
465  *    cannot be used with other type of streams.  This returns new packet
466  *    stream context that can be used to send to and receive packets from
467  *    the specified remote IP and remote port, or NULL on error.  The `stream'
468  *    is the actual stream that is used to send and receive the data.
469  *
470  *    When the parent `stream' receives packets from remote IP address
471  *    and port that does not have its own remote packet stream, it returns
472  *    the packet to the packet callback set for `stream'.  The sender's
473  *    IP address and port can then be retrieved by using the
474  *    silc_packet_get_sender function and to create new packet stream by
475  *    calling this function.  After that, all packets from that IP address
476  *    and port will be received by the new packet stream.
477  *
478  *    If the `packet' is non-NULL it will be injected into the new packet
479  *    stream as soon as the scheduler associated with `stream' schedules
480  *    new tasks.  It can be used to inject an incoming packet to the stream.
481  *
482  *    This interface is for connectionless UDP streams.  If it is possible
483  *    to create connected stream it should be done for performance reasons.
484  *
485  * EXAMPLE
486  *
487  *    // Create parent packet stream, it can receive packets from anywhere
488  *    listener = silc_net_udp_connect("0.0.0.0", 500, NULL, 0, schedule);
489  *    parent = silc_packet_stream_create(engine, schedule, listener);
490  *
491  *    ...
492  *    // Received a packet to the parent stream, get the sender information.
493  *    silc_packet_get_sender(packet, &ip, &port);
494  *
495  *    // Create new packet stream for this remote location.
496  *    remote = silc_packet_stream_add_remote(parent, ip, port, packet);
497  *
498  ***/
499 SilcPacketStream silc_packet_stream_add_remote(SilcPacketStream stream,
500                                                const char *remote_ip,
501                                                SilcUInt16 remote_port,
502                                                SilcPacket packet);
503
504 /****f* silccore/SilcPacketAPI/silc_packet_stream_destroy
505  *
506  * SYNOPSIS
507  *
508  *    void silc_packet_stream_destroy(SilcPacketStream stream);
509  *
510  * DESCRIPTION
511  *
512  *    Destroy packet stream and the underlaying stream.  This will also
513  *    close and destroy the underlaying stream.
514  *
515  ***/
516 void silc_packet_stream_destroy(SilcPacketStream stream);
517
518 /****f* silccore/SilcPacketAPI/silc_packet_stream_is_valid
519  *
520  * SYNOPSIS
521  *
522  *    SilcBool silc_packet_stream_is_valid(SilcPacketStream stream);
523  *
524  * DESCRIPTION
525  *
526  *    Returns TRUE if the packet stream indicated by `stream' is valid and
527  *    has not been disconnected or destroyed.
528  *
529  ***/
530 SilcBool silc_packet_stream_is_valid(SilcPacketStream stream);
531
532 /****f* silccore/SilcPacketAPI/silc_packet_stream_set_router
533  *
534  * SYNOPSIS
535  *
536  *    void silc_packet_stream_set_router(SilcPacketStream stream);
537  *
538  * DESCRIPTION
539  *
540  *    When called sets the stream indicates by `stream' as SILC router
541  *    connection stream.  This causes that certain packets are handled
542  *    differently.  This must be called for router connection streams and
543  *    must not be called for any other stream.
544  *
545  ***/
546 void silc_packet_stream_set_router(SilcPacketStream stream);
547
548 /****f* silccore/SilcPacketAPI/silc_packet_stream_set_iv_included
549  *
550  * SYNOPSIS
551  *
552  *    void silc_packet_stream_set_iv_included(SilcPacketStream stream);
553  *
554  * DESCRIPTION
555  *
556  *    Sets an IV Included property for the stream indicated by `stream'.
557  *    This means that the IV used in the encryption will be included in
558  *    the resulted ciphertext.  This makes it possible to send and receive
559  *    packets on unreliable network transport protocol, such as UDP/IP.
560  *    This must be called if the underlaying stream in the `stream' is UDP
561  *    stream.
562  *
563  *    When this is set to the stream the silc_packet_set_sid must be called
564  *    to set new Security ID.  The Security ID will be included with the IV
565  *    in the ciphertext.
566  *
567  ***/
568 void silc_packet_stream_set_iv_included(SilcPacketStream stream);
569
570 /****f* silccore/SilcPacketAPI/silc_packet_stream_set_stream
571  *
572  * SYNOPSIS
573  *
574  *    void silc_packet_stream_set_stream(SilcPacketStream packet_stream,
575  *                                       SilcStream stream);
576  *
577  * DESCRIPTION
578  *
579  *    This function may be used to change the underlaying stream in the
580  *    packet stream indicated by `packet_stream'.  Note that the old
581  *    stream will not be used after calling this function.  The caller is
582  *    responsible destroying the old stream.  The `stream' will use
583  *    the same scheduler as the `packet_stream'.
584  *
585  ***/
586 void silc_packet_stream_set_stream(SilcPacketStream packet_stream,
587                                    SilcStream stream);
588
589 /****f* silccore/SilcPacketAPI/silc_packet_stream_get_stream
590  *
591  * SYNOPSIS
592  *
593  *    SilcStream silc_packet_stream_get_stream(SilcPacketStream stream);
594  *
595  * DESCRIPTION
596  *
597  *    Returns the actual stream that is associated with the packet stream
598  *    `stream'.  The caller must not free the returned stream.  The returned
599  *    stream is the same pointer that was set for silc_packet_stream_create.
600  *    This function could be used for example when an error callback is
601  *    called by the packet engine to retrieve the actual lower level error
602  *    from the stream.
603  *
604  ***/
605 SilcStream silc_packet_stream_get_stream(SilcPacketStream stream);
606
607 /****f* silccore/SilcPacketAPI/silc_packet_stream_link
608  *
609  * SYNOPSIS
610  *
611  *    SilcBool silc_packet_stream_link(SilcPacketStream stream,
612  *                                     SilcPacketCallbacks *callbacks,
613  *                                     void *callback_context,
614  *                                     int priority, ...);
615  *
616  * DESCRIPTION
617  *
618  *    Links the packet processing callbacks indicated by `callbacks' into
619  *    the packet stream indicated by `stream' with priority `priority' for
620  *    the packet types given in the variable argument list.  This function
621  *    can be used to link to the packet stream for specific packet types
622  *    and receive them in the specified callbacks.  This way, a third party,
623  *    for example some library may attach itself into the packet stream
624  *    and receive and process certain packets.  The variable argument
625  *    list is ended with -1.  To link to receive all packets use
626  *    SILC_PACKET_ANY.
627  *
628  *    The default packet processing callbacks given as argument to the
629  *    silc_packet_engine_start has the priority 0.  Any priority higher
630  *    than 0 will then take precedence over the default callbacks.  Any
631  *    priority lower than 0 (negative value) will be processed after the
632  *    default callbacks.
633  *
634  *    Note that setting only the 'packet_receive' callback in the `callbacks'
635  *    is required.
636  *
637  * EXAMPLE
638  *
639  *    // Link to this packet stream, with high priority, for
640  *    // SILC_PACKET_CONNECTION_AUTH and SILC_PACKET_CONNECTION_AUTH_REQUEST
641  *    // packets. We don't care about other packets.
642  *    silc_packet_stream_link(stream, our_callbacks, our_context,
643  *                            1000000, SILC_PACKET_CONNECTION_AUTH,
644  *                            SILC_PACKET_CONNECTION_AUTH_REQUEST, -1);
645  *
646  ***/
647 SilcBool silc_packet_stream_link(SilcPacketStream stream,
648                                  SilcPacketCallbacks *callbacks,
649                                  void *callback_context,
650                                  int priority, ...);
651
652 /****f* silccore/SilcPacketAPI/silc_packet_stream_unlink
653  *
654  * SYNOPSIS
655  *
656  *    void silc_packet_stream_unlink(SilcPacketStream stream,
657  *                                   SilcPacketCallbacks *callbacks,
658  *                                   void *callback_context);
659  *
660  * DESCRIPTION
661  *
662  *    Unlinks the `callbacks' with `callback_context' from the packet stream
663  *    indicated by `stream'.  This function must be called for the callbacks
664  *    that was linked to `stream' when they are not needed anymore.
665  *
666  ***/
667 void silc_packet_stream_unlink(SilcPacketStream stream,
668                                SilcPacketCallbacks *callbacks,
669                                void *callback_context);
670
671 /****f* silccore/SilcPacketAPI/SilcPacketWrapCoder
672  *
673  * SYNOPSIS
674  *
675  *    typedef SilcBool (*SilcPacketWrapCoder)(SilcStream stream,
676  *                                            SilcStreamStatus status,
677  *                                            SilcBuffer buffer,
678  *                                            void *context);
679  *
680  * DESCRIPTION
681  *
682  *    The encoder/decoder callback for silc_packet_stream_wrap.  If the
683  *    `status' is SILC_STREAM_CAN_WRITE then additional data can be added
684  *    to `buffer'.  It is added before the data that is written with
685  *    silc_stream_write.  The silc_buffer_enlarge should be called to verify
686  *    there is enough room in `buffer' before adding data to it.  The `buffer'
687  *    must not be freed.
688  *
689  *    If the `status' is SILC_STREAM_CAN_READ then data from the `buffer'
690  *    may be read before it is passed to readed when silc_stream_read is
691  *    called.  The `buffer' may be advanced also to hide data in it.
692  *
693  *    This function returns FALSE in case of error.
694  *
695  ***/
696 typedef SilcBool (*SilcPacketWrapCoder)(SilcStream stream,
697                                         SilcStreamStatus status,
698                                         SilcBuffer buffer,
699                                         void *context);
700
701 /****f* silccore/SilcPacketAPI/silc_packet_stream_wrap
702  *
703  * SYNOPSIS
704  *
705  *    SilcStream silc_packet_stream_wrap(SilcPacketStream stream,
706  *                                       SilcPacketType type,
707  *                                       SilcPacketFlags flags,
708  *                                       SilcBool blocking_mode,
709  *                                       SilcPacketWrapCoder coder,
710  *                                       void *context);
711  *
712  * DESCRIPTION
713  *
714  *    Wraps the packet stream indicated by `stream' into a SilcStream for
715  *    the packet type indicated by `type' with packet flags indicated by
716  *    `flags'.  The returned SilcStream can be used to read and write the
717  *    specified SILC packets with the specified packet flags, by calling
718  *    silc_stream_read and silc_stream_write, respectively.  The returned
719  *    stream can be destroyed by calling silc_stream_destroy.  It does not
720  *    destroy the wrapped packet stream.
721  *
722  *    If the `blocking_mode' mode is TRUE then the silc_stream_read and
723  *    silc_stream_write may block the calling process or thread until SILC
724  *    packet is read or written.  If it is FALSE the stream is in non-blocking
725  *    mode and the calls never block.  The returned stream is thread-safe and
726  *    packets may be read and written in multi-threaded environment.
727  *
728  *    In non-blocking mode the silc_stream_set_notifier must be called before
729  *    the returned stream can be used to read packets.  The stream status
730  *    SILC_STREAM_CAN_READ will be returned to the notifier callback to
731  *    indicate that a packet is ready for reading.  Calling silc_stream_read
732  *    once returns one complete SILC packet data payload (which is of type of
733  *    `type').
734  *
735  *    The `coder' is optional encoder/decoder callback which the packet engine
736  *    will call if it is non-NULL.  It can be used to encode additional data
737  *    into each packet when silc_stream_write is called or decode data before
738  *    it is passed to reader when silc_stream_read is called.  The `context'
739  *    is passed to `coder'.
740  *
741  *    The returned SilcStream can be used as any normal stream and all
742  *    SilcStream API functions may be used with the stream.  This returns
743  *    NULL on error.
744  *
745  ***/
746 SilcStream silc_packet_stream_wrap(SilcPacketStream stream,
747                                    SilcPacketType type,
748                                    SilcPacketFlags flags,
749                                    SilcBool blocking_mode,
750                                    SilcPacketWrapCoder coder,
751                                    void *context);
752
753 /****f* silccore/SilcPacketAPI/silc_packet_stream_is_udp
754  *
755  * SYNOPSIS
756  *
757  *    SilcBool silc_packet_stream_is_udp(SilcPacketStream stream);
758  *
759  * DESCRIPTION
760  *
761  *    Returns TRUE if the packet stream indicated by `stream' is using
762  *    UDP transport.
763  *
764  ***/
765 SilcBool silc_packet_stream_is_udp(SilcPacketStream stream);
766
767 /****f* silccore/SilcPacketAPI/silc_packet_get_sender
768  *
769  * SYNOPSIS
770  *
771  *    SilcBool silc_packet_get_sender(SilcPacket packet,
772  *                                    const char **sender_ip,
773  *                                    SilcUInt16 *sender_port);
774  *
775  * DESCRIPTION
776  *
777  *    Returns the packet sender's IP address and port from UDP packet
778  *    indicated by `packet'.  This can be called only from the packet
779  *    callback to retrieve the information of the packet's sender.  Returns
780  *    FALSE if the information is not available.
781  *
782  ***/
783 SilcBool silc_packet_get_sender(SilcPacket packet,
784                                 const char **sender_ip,
785                                 SilcUInt16 *sender_port);
786
787 /****f* silccore/SilcPacketAPI/silc_packet_stream_ref
788  *
789  * SYNOPSIS
790  *
791  *    void silc_packet_stream_ref(SilcPacketStream stream);
792  *
793  * DESCRIPTION
794  *
795  *    Increase reference counter for the stream indicated by `stream'.  This
796  *    can be used to take a reference for the stream.  To unreference the
797  *    stream call silc_packet_stream_unref function.
798  *
799  ***/
800 void silc_packet_stream_ref(SilcPacketStream stream);
801
802 /****f* silccore/SilcPacketAPI/silc_packet_stream_unref
803  *
804  * SYNOPSIS
805  *
806  *    void silc_packet_stream_unref(SilcPacketStream stream);
807  *
808  * DESCRIPTION
809  *
810  *    Decrease reference counter for the stream indicated by `stream'.  If
811  *    the counter hits zero the stream will be destroyed automatically.
812  *
813  ***/
814 void silc_packet_stream_unref(SilcPacketStream stream);
815
816 /****f* silccore/SilcPacketAPI/silc_packet_get_engine
817  *
818  * SYNOPSIS
819  *
820  *    SilcPacketEngine silc_packet_get_engine(SilcPacketStream stream);
821  *
822  * DESCRIPTION
823  *
824  *    Returns the packet engine from the `stream'.
825  *
826  ***/
827 SilcPacketEngine silc_packet_get_engine(SilcPacketStream stream);
828
829 /****f* silccore/SilcPacketAPI/silc_packet_set_context
830  *
831  * SYNOPSIS
832  *
833  *    void silc_packet_set_context(SilcPacketStream stream,
834  *                                 void *stream_context);
835  *
836  * DESCRIPTION
837  *
838  *    Sets a stream specific context to the stream.  The context will
839  *    be delivered to all callback functions, and it can be retrieved by
840  *    calling silc_packet_get_context function as well.  Note that this is
841  *    separate packet stream specific context, and not the same as
842  *    `callback_context' in silc_packet_engine_start.  Both will be delivered
843  *    to the callbacks, and this context as the `stream_context' argument.
844  *
845  ***/
846 void silc_packet_set_context(SilcPacketStream stream, void *stream_context);
847
848 /****f* silccore/SilcPacketAPI/silc_packet_get_context
849  *
850  * SYNOPSIS
851  *
852  *    void *silc_packet_get_context(SilcPacketStream stream);
853  *
854  * DESCRIPTION
855  *
856  *    Returns the current set application context, or NULL if none is set.
857  *
858  ***/
859 void *silc_packet_get_context(SilcPacketStream stream);
860
861 /****f* silccore/SilcPacketAPI/silc_packet_set_keys
862  *
863  * SYNOPSIS
864  *
865  *    void silc_packet_set_keys(SilcPacketStream stream, SilcCipher send_key,
866  *                              SilcCipher receive_key, SilcHmac send_hmac,
867  *                              SilcHmac receive_hmac, SilcBool rekey);
868  *
869  * DESCRIPTION
870  *
871  *    Set ciphers and HMACs to be used to encrypt sent packets, and decrypt
872  *    received packets.  This can be called multiple times to change the
873  *    ciphers and HMACs.
874  *
875  *    If the `rekey' is TRUE this function will send SILC_PACKET_REKEY_DONE
876  *    to the `stream' and will set the new keys.  If it is FALSE the keys
877  *    are changed but the packet is not changed.
878  *
879  *    When changing keys the old cipher and HMACs will be freed.  If the keys
880  *    are not set at all, packets will not be encrypted or decrypted.
881  *
882  ***/
883 SilcBool silc_packet_set_keys(SilcPacketStream stream, SilcCipher send_key,
884                               SilcCipher receive_key, SilcHmac send_hmac,
885                               SilcHmac receive_hmac, SilcBool rekey);
886
887 /****f* silccore/SilcPacketAPI/silc_packet_get_keys
888  *
889  * SYNOPSIS
890  *
891  *    SilcBool silc_packet_get_keys(SilcPacketStream stream,
892  *                                  SilcCipher *send_key,
893  *                                  SilcCipher *receive_key,
894  *                                  SilcHmac *send_hmac,
895  *                                  SilcHmac *receive_hmac);
896  *
897  * DESCRIPTION
898  *
899  *    Returns the pointers of current ciphers and HMACs from the `stream'.
900  *    Returns FALSE if keys are not set.
901  *
902  ***/
903 SilcBool silc_packet_get_keys(SilcPacketStream stream,
904                               SilcCipher *send_key, SilcCipher *receive_key,
905                               SilcHmac *send_hmac, SilcHmac *receive_hmac);
906
907 /****f* silccore/SilcPacketAPI/silc_packet_set_ids
908  *
909  * SYNOPSIS
910  *
911  *    SilcBool silc_packet_set_ids(SilcPacketStream stream,
912  *                                 SilcIdType src_id_type, const void *src_id
913  *                                 SilcIdType dst_id_type, const void *dst_id);
914  *
915  * DESCRIPTION
916  *
917  *    Set the source ID and destination ID to be used when sending packets to
918  *    this packet stream.  The IDs to be used for a packet stream can be
919  *    overridden when sending packets.  However, if the IDs do not ever change
920  *    for the packet stream it is recommended they are set using this function.
921  *    In this case they can be omitted when sending packets to the stream.
922  *    It is also possible to set only source or destination ID.
923  *
924  ***/
925 SilcBool silc_packet_set_ids(SilcPacketStream stream,
926                              SilcIdType src_id_type, const void *src_id,
927                              SilcIdType dst_id_type, const void *dst_id);
928
929 /****f* silccore/SilcPacketAPI/silc_packet_get_ids
930  *
931  * SYNOPSIS
932  *
933  *    SilcBool silc_packet_get_ids(SilcPacketStream stream,
934  *                                 SilcBool *src_id_set, SilcID *src_id,
935  *                                 SilcBool *dst_id_set, SilcID *dst_id);
936  *
937  * DESCRIPTION
938  *
939  *    Returns source and destination IDs from the packet stream.  The
940  *    `src_id_set' is set to TRUE if the source ID was returned.  The
941  *    `dst_id_set' is set to TRUE if the destination ID was returned.
942  *
943  ***/
944 SilcBool silc_packet_get_ids(SilcPacketStream stream,
945                              SilcBool *src_id_set, SilcID *src_id,
946                              SilcBool *dst_id_set, SilcID *dst_id);
947
948 /****f* silccore/SilcPacketAPI/silc_packet_set_sid
949  *
950  * SYNOPSIS
951  *
952  *    SilcBool silc_packet_set_sid(SilcPacketStream stream, SilcUInt8 sid);
953  *
954  * DESCRIPTION
955  *
956  *    Sets new Security ID to the packet stream indicated by `stream'.  This
957  *    is called only if the IV Included property was set to the stream
958  *    by calling silc_packet_stream_set_iv_included.  This function sets
959  *    new Security ID to the stream which is then included in the ciphertext
960  *    of a packet.  The `sid' must be 0 when it is set for the very first
961  *    time and must be increased by one after each rekey.  This function must
962  *    be called every time new keys are added to the stream after a rekey.
963  *
964  *    If this function is called when the IV Included property has not been
965  *    set to the stream the `sid' will be ignored.  Returns FALSE if the
966  *    IV Included has not been set, TRUE otherwise.
967  *
968  ***/
969 SilcBool silc_packet_set_sid(SilcPacketStream stream, SilcUInt8 sid);
970
971 /****f* silccore/SilcPacketAPI/silc_packet_send
972  *
973  * SYNOPSIS
974  *
975  *    SilcBool silc_packet_send(SilcPacketStream stream,
976  *                              SilcPacketType type, SilcPacketFlags flags,
977  *                              const unsigned char *data,
978  *                              SilcUInt32 data_len);
979  *
980  * DESCRIPTION
981  *
982  *    Send `data' of length of `data_len' to the packet stream indicated by
983  *    `stream'.  If ciphers and HMACs were set using silc_packet_set_keys
984  *    the packet will be encrypted and MAC will be computed for it.  If
985  *    silc_packet_set_ids was used to set source and destination ID for the
986  *    packet stream those IDs are used in the packet.  If IDs have not been
987  *    set and they need to be provided then silc_packet_send_ext function
988  *    should be used.  Otherwise, the packet will not have IDs set at all.
989  *    Returns FALSE if packet could not be sent.
990  *
991  ***/
992 SilcBool silc_packet_send(SilcPacketStream stream,
993                           SilcPacketType type, SilcPacketFlags flags,
994                           const unsigned char *data, SilcUInt32 data_len);
995
996 /****f* silccore/SilcPacketAPI/silc_packet_send_ext
997  *
998  * SYNOPSIS
999  *
1000  *    SilcBool
1001  *    silc_packet_send_ext(SilcPacketStream stream,
1002  *                         SilcPacketType type, SilcPacketFlags flags,
1003  *                         SilcIdType src_id_type, void *srd_id,
1004  *                         SilcIdType dst_id_type, void *dst_id,
1005  *                         const unsigned char *data, SilcUInt32 data_len,
1006  *                         SilcCipher cipher, SilcHmac hmac);
1007  *
1008  * DESCRIPTION
1009  *
1010  *    Same as silc_packet_send but with this function different sending
1011  *    parameters can be sent as argument.  This function can be used to
1012  *    set specific IDs, cipher and HMAC to be used in packet sending,
1013  *    instead of the ones saved in the `stream'.  If any of the extra
1014  *    pointers are NULL, default values set to the stream will apply.
1015  *
1016  ***/
1017 SilcBool silc_packet_send_ext(SilcPacketStream stream,
1018                               SilcPacketType type, SilcPacketFlags flags,
1019                               SilcIdType src_id_type, void *src_id,
1020                               SilcIdType dst_id_type, void *dst_id,
1021                               const unsigned char *data, SilcUInt32 data_len,
1022                               SilcCipher cipher, SilcHmac hmac);
1023
1024 /****f* silccore/SilcPacketAPI/silc_packet_send_va
1025  *
1026  * SYNOPSIS
1027  *
1028  *    SilcBool silc_packet_send_va(SilcPacketStream stream,
1029  *                                 SilcPacketType type,
1030  *                                 SilcPacketFlags flags, ...);
1031  *
1032  * DESCRIPTION
1033  *
1034  *    Same as silc_packet_send but takes the data in as variable argument
1035  *    formatted buffer (see silcbuffmt.h).  The arguments must be ended
1036  *    with SILC_STR_END.  Returns FALSE if packet could not be sent or
1037  *    the buffer could not be formatted.
1038  *
1039  * EXAMPLE
1040  *
1041  *    // Send NEW_CLIENT packet
1042  *    silc_packet_send_va(stream, SILC_PACKET_NEW_CLIENT, 0,
1043  *                        SILC_STR_UI_SHORT(username_len),
1044  *                        SILC_STR_DATA(username, username_len),
1045  *                        SILC_STR_UI_SHORT(realname_len),
1046  *                        SILC_STR_DATA(realname, realname_len),
1047  *                        SILC_STR_END);
1048  *
1049  ***/
1050 SilcBool silc_packet_send_va(SilcPacketStream stream,
1051                              SilcPacketType type, SilcPacketFlags flags, ...);
1052
1053 /****f* silccore/SilcPacketAPI/silc_packet_send_va_ext
1054  *
1055  * SYNOPSIS
1056  *
1057  *    SilcBool
1058  *    silc_packet_send_va_ext(SilcPacketStream stream,
1059  *                            SilcPacketType type, SilcPacketFlags flags,
1060  *                            SilcIdType src_id_type, void *srd_id,
1061  *                            SilcIdType dst_id_type, void *dst_id,
1062  *                            SilcCipher cipher, SilcHmac hmac, ...);
1063  *
1064  * DESCRIPTION
1065  *
1066  *    Same as silc_packet_send_va but with this function different sending
1067  *    parameters can be sent as argument.  This function can be used to
1068  *    set specific IDs, cipher and HMAC to be used in packet sending,
1069  *    instead of the ones saved in the `stream'.  If any of the extra
1070  *    pointers are NULL, default values set to the stream will apply.
1071  *
1072  ***/
1073 SilcBool silc_packet_send_va_ext(SilcPacketStream stream,
1074                                  SilcPacketType type, SilcPacketFlags flags,
1075                                  SilcIdType src_id_type, void *src_id,
1076                                  SilcIdType dst_id_type, void *dst_id,
1077                                  SilcCipher cipher, SilcHmac hmac, ...);
1078
1079 /****f* silccore/SilcPacketAPI/silc_packet_wait_init
1080  *
1081  * SYNOPSIS
1082  *
1083  *    void *silc_packet_wait_init(SilcPacketStream stream,
1084  *                                const SilcID *source_id, ...);
1085  *
1086  * DESCRIPTION
1087  *
1088  *    Initializes a packet waiter for the packet stream `stream' and
1089  *    for the variable argument list of packet types.  The function
1090  *    silc_packet_wait can be used to block the thread until a packet
1091  *    has been received.
1092  *
1093  *    This function is used to initialize the waiting and to give the list
1094  *    of packet types that caller wish to receive.  The variable argument
1095  *    list must end with -1.  To receive all packets use SILC_PACKET_ANY.
1096  *    If the `source_id' is non-NULL then only packets of the specified
1097  *    type from the specified `source_id' are received.  If it is NULL
1098  *    then the packet source is ignored.
1099  *
1100  *    Returns a context that must be given to the silc_packet_wait function
1101  *    as argument.  Returns NULL on error.  To uninitialize the waiting
1102  *    call silc_packet_wait_uninit.
1103  *
1104  * NOTES
1105  *
1106  *    Note that packets may be available immediately after calling this
1107  *    function and they will be buffered, until silc_packet_wait is called.
1108  *
1109  * EXAMPLE
1110  *
1111  *    void *waiter;
1112  *
1113  *    // Will wait for private message packets
1114  *    waiter = silc_packet_wait_init(stream, NULL,
1115  *                                   SILC_PACKET_PRIVATE_MESSAGE, -1);
1116  *
1117  ***/
1118 void *silc_packet_wait_init(SilcPacketStream stream,
1119                             const SilcID *source_id, ...);
1120
1121 /****f* silccore/SilcPacketAPI/silc_packet_wait_uninit
1122  *
1123  * SYNOPSIS
1124  *
1125  *    void silc_packet_wait_uninit(void *waiter, SilcPacketStream stream);
1126  *
1127  * DESCRIPTION
1128  *
1129  *    Uninitializes the waiting context.  This may be called also from
1130  *    another thread while other thread is waiting for packets.  This will
1131  *    inform the waiting thread to stop waiting.
1132  *
1133  ***/
1134 void silc_packet_wait_uninit(void *waiter, SilcPacketStream stream);
1135
1136 /****f* silccore/SilcPacketAPI/silc_packet_wait
1137  *
1138  * SYNOPSIS
1139  *
1140  *    int silc_packet_wait(void *waiter, int timeout,
1141  *                         SilcPacket *return_packet)
1142  *
1143  * DESCRIPTION
1144  *
1145  *    A special function that can be used to wait for a packet to arrive.
1146  *    This function will block the calling process or thread until either
1147  *    a packet is received into the `return_packet' pointer or the specified
1148  *    timeout value `timeout', which is in milliseconds, will expire.  If
1149  *    the timeout is 0, no timeout exist.  Before calling this function the
1150  *    silc_packet_wait_init must be called.  The caller is responsible for
1151  *    freeing the returned packet with silc_packet_free.
1152  *
1153  *    This function can be used for example from a thread that wants to
1154  *    block until SILC packet has been received.
1155  *
1156  *    Returns 1 when packet was received, 0 if timeout occurred and -1 if
1157  *    error occurred.
1158  *
1159  * EXAMPLE
1160  *
1161  *    static int foo_read_data(FooContext c)
1162  *    {
1163  *      SilcPacket packet;
1164  *      void *waiter;
1165  *      ...
1166  *
1167  *      // Will wait for private message packets
1168  *      if (c->initialized == FALSE) {
1169  *        waiter = silc_packet_wait_init(stream,
1170  *                                       SILC_PACKET_PRIVATE_MESSAGE, -1);
1171  *        c->initialized = TRUE;
1172  *      }
1173  *
1174  *      ...
1175  *      // Wait here until private message packet is received
1176  *      if ((silc_packet_wait(waiter, 0, &packet)) < 0)
1177  *        return -1;
1178  *
1179  *      ... process packet ...
1180  *
1181  *      return 1;
1182  *    }
1183  *
1184  ***/
1185 int silc_packet_wait(void *waiter, int timeout, SilcPacket *return_packet);
1186
1187 /****f* silccore/SilcPacketAPI/silc_packet_free
1188  *
1189  * SYNOPSIS
1190  *
1191  *    void silc_packet_free(SilcPacket packet);
1192  *
1193  * DESCRIPTION
1194  *
1195  *    This function is used to free the SilcPacket pointer that application
1196  *    receives in the SilcPacketReceive callback.  Application must free
1197  *    the packet if it takes it in to processing.
1198  *
1199  ***/
1200 void silc_packet_free(SilcPacket packet);
1201
1202 #endif /* SILCPACKET_H */