-/*
-
- silcnotify.h
-
- Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
-
- Copyright (C) 1997 - 2000 Pekka Riikonen
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
-*/
+/****h* silccore/silcnotify.h
+ *
+ * NAME
+ *
+ * silcnotify.h
+ *
+ * COPYRIGHT
+ *
+ * Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
+ *
+ * Copyright (C) 1997 - 2000 Pekka Riikonen
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * DESCRIPTION
+ *
+ * Implementation of the Notify Payload. Notify Payload is used usually
+ * servers to send different kind of important notify messages to other
+ * servers and to clients.
+ *
+ ***/
#ifndef SILCNOTIFY_H
#define SILCNOTIFY_H
-/* Forward declarations */
+/****s* silccore/SilcNotifyAPI/SilcNotifyPayload
+ *
+ * NAME
+ *
+ * typedef struct SilcNotifyPayloadStruct *SilcNotifyPayload;
+ *
+ * DESCRIPTION
+ *
+ * This context is the actual Notify Payload and is allocated
+ * by silc_notify_payload_parse and given as argument usually to
+ * all silc_notify_payload_* functions. It is freed by the
+ * silc_notify_payload_free function.
+ *
+ ***/
typedef struct SilcNotifyPayloadStruct *SilcNotifyPayload;
-/* Type definition of notify type */
+/****d* silccore/SilcNotifyAPI/SilcNotifyType
+ *
+ * NAME
+ *
+ * typedef uint16 SilcNotifyType;
+ *
+ * DESCRIPTION
+ *
+ * The notify type definition and all of the notify types.
+ *
+ * SOURCE
+ */
typedef uint16 SilcNotifyType;
/* SILC notify types. Server may send these notify types to client to
notify of some action. */
-#define SILC_NOTIFY_TYPE_NONE 0 /* no specific type */
-#define SILC_NOTIFY_TYPE_INVITE 1 /* invites/invite list change */
-#define SILC_NOTIFY_TYPE_JOIN 2 /* "has joined channel" */
-#define SILC_NOTIFY_TYPE_LEAVE 3 /* "has left channel" */
-#define SILC_NOTIFY_TYPE_SIGNOFF 4 /* "signoff" */
-#define SILC_NOTIFY_TYPE_TOPIC_SET 5 /* "topic has been changed" */
-#define SILC_NOTIFY_TYPE_NICK_CHANGE 6 /* "has changed nickname" */
-#define SILC_NOTIFY_TYPE_CMODE_CHANGE 7 /* "has changed channel mode" */
-#define SILC_NOTIFY_TYPE_CUMODE_CHANGE 8 /* "has change mode" */
-#define SILC_NOTIFY_TYPE_MOTD 9 /* message of the day */
+#define SILC_NOTIFY_TYPE_NONE 0 /* no specific type */
+#define SILC_NOTIFY_TYPE_INVITE 1 /* invites/invite list change */
+#define SILC_NOTIFY_TYPE_JOIN 2 /* "has joined channel" */
+#define SILC_NOTIFY_TYPE_LEAVE 3 /* "has left channel" */
+#define SILC_NOTIFY_TYPE_SIGNOFF 4 /* "signoff" */
+#define SILC_NOTIFY_TYPE_TOPIC_SET 5 /* "topic has been changed" */
+#define SILC_NOTIFY_TYPE_NICK_CHANGE 6 /* "has changed nickname" */
+#define SILC_NOTIFY_TYPE_CMODE_CHANGE 7 /* "has changed channel mode" */
+#define SILC_NOTIFY_TYPE_CUMODE_CHANGE 8 /* "has change mode" */
+#define SILC_NOTIFY_TYPE_MOTD 9 /* message of the day */
#define SILC_NOTIFY_TYPE_CHANNEL_CHANGE 10 /* Channel's ID has changed */
#define SILC_NOTIFY_TYPE_SERVER_SIGNOFF 11 /* Server quitting SILC */
#define SILC_NOTIFY_TYPE_KICKED 12 /* Kicked from channel */
#define SILC_NOTIFY_TYPE_KILLED 13 /* Killed from the network */
#define SILC_NOTIFY_TYPE_UMODE_CHANGE 14 /* user mode was changed */
#define SILC_NOTIFY_TYPE_BAN 15 /* ban list change */
+/***/
/* Prototypes */
+
+/****f* silccore/SilcNotifyAPI/silc_notify_payload_parse
+ *
+ * SYNOPSIS
+ *
+ * SilcNotifyPayload silc_notify_payload_parse(SilcBuffer buffer);
+ *
+ * DESCRIPTION
+ *
+ * Parse notify payload buffer and return data into payload structure.
+ * The `buffer' is the raw payload data.
+ *
+ ***/
SilcNotifyPayload silc_notify_payload_parse(SilcBuffer buffer);
+
+/****f* silccore/SilcNotifyAPI/silc_notify_payload_encode
+ *
+ * SYNOPSIS
+ *
+ * SilcBuffer silc_notify_payload_encode(SilcNotifyType type, uint32 argc,
+ * va_list ap);
+ *
+ * DESCRIPTION
+ *
+ * Encode notify payload with variable argument list. If `argc' is > 0
+ * argument payloads will be associated to the notify payload. Variable
+ * arguments must be {usigned char *, uint32 (len)}.
+ *
+ ***/
SilcBuffer silc_notify_payload_encode(SilcNotifyType type, uint32 argc,
va_list ap);
+
+/****f* silccore/SilcNotifyAPI/silc_notify_payload_encode_args
+ *
+ * SYNOPSIS
+ *
+ * SilcBuffer silc_notify_payload_encode_args(SilcNotifyType type,
+ * uint32 argc,
+ * SilcBuffer args);
+ *
+ * DESCRIPTION
+ *
+ * Same as silc_notify_payload_encode but takes arguments from the `args'
+ * encoded Argument Payload buffer.
+ *
+ ***/
SilcBuffer silc_notify_payload_encode_args(SilcNotifyType type,
uint32 argc,
SilcBuffer args);
+
+/****f* silccore/SilcNotifyAPI/silc_notify_payload_free
+ *
+ * SYNOPSIS
+ *
+ * void silc_notify_payload_free(SilcNotifyPayload payload);
+ *
+ * DESCRIPTION
+ *
+ * Frees the Notify Payload and all data in it.
+ *
+ ***/
void silc_notify_payload_free(SilcNotifyPayload payload);
+
+/****f* silccore/SilcNotifyAPI/silc_notify_get_type
+ *
+ * SYNOPSIS
+ *
+ * SilcNotifyType silc_notify_get_type(SilcNotifyPayload payload);
+ *
+ * DESCRIPTION
+ *
+ * Return the notify type from the payload.
+ *
+ ***/
SilcNotifyType silc_notify_get_type(SilcNotifyPayload payload);
+
+/****f* silccore/SilcNotifyAPI/silc_notify_get_arg_num
+ *
+ * SYNOPSIS
+ *
+ * uint32 silc_notify_get_arg_num(SilcNotifyPayload payload);
+ *
+ * DESCRIPTION
+ *
+ * Return the number of the arguments associated with the Notify Payload.
+ *
+ ***/
uint32 silc_notify_get_arg_num(SilcNotifyPayload payload);
+
+/****f* silccore/SilcNotifyAPI/silc_notify_get_args
+ *
+ * SYNOPSIS
+ *
+ * SilcArgumentPayload silc_notify_get_args(SilcNotifyPayload payload);
+ *
+ * DESCRIPTION
+ *
+ * Return the Argument Payload containing the arguments from the
+ * Notify Payload. The caller must not free it.
+ *
+ ***/
SilcArgumentPayload silc_notify_get_args(SilcNotifyPayload payload);
#endif
-/*
-
- silcpacket.h
-
- Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
-
- Copyright (C) 1997 - 2001 Pekka Riikonen
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
-*/
+/****h* silccore/silcpacket.h
+ *
+ * NAME
+ *
+ * silcpacket.h
+ *
+ * COPYRIGHT
+ *
+ * Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
+ *
+ * Copyright (C) 1997 - 2001 Pekka Riikonen
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * DESCRIPTION
+ *
+ * Implementation of the packet routines for sending and receiving
+ * SILC Packets. These includes the data sending routines and data
+ * reading routines, encrypting and decrypting routines, packet assembling
+ * and packet parsing routines.
+ *
+ ***/
#ifndef SILCPACKET_H
#define SILCPACKET_H
/* Maximum length of ID */
#define SILC_PACKET_MAX_ID_LEN 16
-/* SILC packet type definition. For now, it is defined like this and I don't
- expect it to change in any near future. If one byte as a packet type is
- not enough we can, then, think something else. */
+/****d* silccore/SilcPacketAPI/SilcPacketType
+ *
+ * NAME
+ *
+ * typedef unsigned char SilcPacketType;
+ *
+ * DESCRIPTION
+ *
+ * SILC packet type definition and all the packet types.
+ *
+ * SOURCE
+ */
typedef unsigned char SilcPacketType;
-/* SILC packet version type definition. */
+/* SILC Packet types. */
+#define SILC_PACKET_NONE 0 /* NULL, never sent */
+#define SILC_PACKET_DISCONNECT 1 /* Disconnection */
+#define SILC_PACKET_SUCCESS 2 /* Success */
+#define SILC_PACKET_FAILURE 3 /* Failure */
+#define SILC_PACKET_REJECT 4 /* Rejected */
+#define SILC_PACKET_NOTIFY 5 /* Notify message */
+#define SILC_PACKET_ERROR 6 /* Error message */
+#define SILC_PACKET_CHANNEL_MESSAGE 7 /* Message for channel */
+#define SILC_PACKET_CHANNEL_KEY 8 /* Key of the channel */
+#define SILC_PACKET_PRIVATE_MESSAGE 9 /* Private message */
+#define SILC_PACKET_PRIVATE_MESSAGE_KEY 10 /* Private message key*/
+#define SILC_PACKET_COMMAND 11 /* Command */
+#define SILC_PACKET_COMMAND_REPLY 12 /* Reply to a command */
+#define SILC_PACKET_KEY_EXCHANGE 13 /* Start of KE */
+#define SILC_PACKET_KEY_EXCHANGE_1 14 /* KE1 */
+#define SILC_PACKET_KEY_EXCHANGE_2 15 /* KE2 */
+#define SILC_PACKET_CONNECTION_AUTH_REQUEST 16 /* Request of auth meth */
+#define SILC_PACKET_CONNECTION_AUTH 17 /* Connectinon auth */
+#define SILC_PACKET_NEW_ID 18 /* Sending new ID */
+#define SILC_PACKET_NEW_CLIENT 19 /* Client registering */
+#define SILC_PACKET_NEW_SERVER 20 /* Server registering */
+#define SILC_PACKET_NEW_CHANNEL 21 /* Channel registering */
+#define SILC_PACKET_REKEY 22 /* Re-key start */
+#define SILC_PACKET_REKEY_DONE 23 /* Re-key done */
+#define SILC_PACKET_HEARTBEAT 24 /* Heartbeat */
+#define SILC_PACKET_KEY_AGREEMENT 25 /* Key Agreement request */
+#define SILC_PACKET_CELL_ROUTERS 26 /* Cell routers backup */
+
+#define SILC_PACKET_PRIVATE 200 /* Private range start */
+#define SILC_PACKET_MAX 255 /* RESERVED */
+/***/
+
+/****d* silccore/SilcPacketAPI/SilcPacketVersion
+ *
+ * NAME
+ *
+ * typedef unsigned char SilcPacketVersion;
+ *
+ * DESCRIPTION
+ *
+ * SILC packet version type definition.
+ *
+ ***/
typedef unsigned char SilcPacketVersion;
-/* SILC packet flags type definition. */
+/****d* silccore/SilcPacketAPI/SilcPacketFlags
+ *
+ * NAME
+ *
+ * typedef unsigned char SilcPacketFlags;
+ *
+ * DESCRIPTION
+ *
+ * SILC packet flags type definition and all the packet flags.
+ *
+ * SOURCE
+ */
typedef unsigned char SilcPacketFlags;
/* All defined packet flags */
-#define SILC_PACKET_FLAG_NONE 0x00
-#define SILC_PACKET_FLAG_PRIVMSG_KEY 0x01
-#define SILC_PACKET_FLAG_LIST 0x02
-#define SILC_PACKET_FLAG_BROADCAST 0x04
+#define SILC_PACKET_FLAG_NONE 0x00 /* No flags */
+#define SILC_PACKET_FLAG_PRIVMSG_KEY 0x01 /* Private message key */
+#define SILC_PACKET_FLAG_LIST 0x02 /* Packet is a list */
+#define SILC_PACKET_FLAG_BROADCAST 0x04 /* Packet is a broadcast */
+/***/
+
/* Rest of flags still available
#define SILC_PACKET_FLAG_XXX 0x08
#define SILC_PACKET_FLAG_XXX 0x10
#define SILC_PACKET_FLAG_XXX 0x80
*/
-/*
- SILC packet context.
-
- In packet sending this is filled and sent to silc_packet_assemble
- which then uses it to assemble new packet. In packet reception pointer
- to this context is sent to silc_packet_parse which parses the packet
- and returns the relevant information to this structure. On packet
- reception returned ID's are always the hash values of the ID's from
- the packet.
-
- Short description of the fields following:
-
- SilcBuffer buffer
-
- The data buffer.
-
- SilcPacketType type
-
- Type of the packet. Types are defined below.
-
- SilcPacketFlags flags
-
- Packet flags. Flags are defined above.
-
- unsigned char *src_id
- uint16 src_id_len
- unsigned char src_id_type
-
- Source ID, its length and type. On packet reception retuned ID's
- are always the hash values of the ID's from the packet.
-
- unsigned char *dst_id;
- uint16 dst_id_len;
- unsigned char src_id_type;
-
- Destination ID, its length and type. On packet reception retuned
- ID's are always the hash values of the ID's from the packet.
-
- SilcHash hash
-
- Pointer to allocated hash object. This must be MD5 hash object.
- This is used to calculate checksum of the packet.
-
-*/
+/****s* silccore/SilcPacketAPI/SilcPacketContext
+ *
+ * NAME
+ *
+ * typedef struct { ... } SilcPacketContext;
+ *
+ * DESCRIPTION
+ *
+ * In packet sending this is filled and sent to silc_packet_assemble
+ * which then uses it to assemble new packet. In packet reception pointer
+ * to this context is sent to silc_packet_parse which parses the packet
+ * and returns the relevant information to this structure. On packet
+ * reception returned ID's are always the hash values of the ID's from
+ * the packet.
+ *
+ * Short description of the fields following:
+ *
+ * SilcBuffer buffer
+ *
+ * The data buffer.
+ *
+ * SilcPacketType type
+ *
+ * Type of the packet. Types are defined below.
+ *
+ * SilcPacketFlags flags
+ *
+ * Packet flags. Flags are defined above.
+ *
+ * unsigned char *src_id
+ * uint16 src_id_len
+ * unsigned char src_id_type
+ *
+ * Source ID, its length and type. On packet reception retuned ID's
+ * are always the hash values of the ID's from the packet.
+ *
+ * unsigned char *dst_id;
+ * uint16 dst_id_len;
+ * unsigned char src_id_type;
+ *
+ * Destination ID, its length and type. On packet reception retuned
+ * ID's are always the hash values of the ID's from the packet.
+ *
+ * uint16 truelen
+ * uint16 padlen
+ *
+ * The true lenght of the packet and the padded length of the packet.
+ * These may be set by the caller before calling any of the
+ * silc_packet_* routines. If not provided the library will calculate
+ * the values.
+ *
+ * in users;
+ *
+ * Reference counter for this context. The context is freed only
+ * after the reference counter hits zero. The counter is added
+ * calling silc_packet_context_dup and decreased by calling the
+ * silc_packet_context_free.
+ *
+ ***/
typedef struct {
SilcBuffer buffer;
SilcPacketType type;
void *context;
SilcSocketConnection sock;
- /* Reference count for this context. The context is free'd only
- after the reference count is zero. */
int users;
} SilcPacketContext;
-/*
- Silc Packet Parser context.
-
- This context is used in packet reception when silc_packet_receive_process
- function calls parser callback that performs the actual packet decryption
- and parsing. This context is sent as argument to the parser function.
- This context must be free'd by the parser callback function.
-
- Following description of the fields:
-
- SilcPacketContext *packet
-
- The actual packet received from the network. In this phase the
- context is not parsed, only the packet->buffer is allocated and
- it includes the raw packet data, which is encrypted.
-
- SilcSocketConnection sock
-
- The associated connection.
-
- void *context
-
- User context that is sent to the silc_packet_receive_process
- function. This usually includes application and connection specific
- data.
-
-*/
-
+/****s* silccore/SilcPacketAPI/SilcPacketParserContext
+ *
+ * NAME
+ *
+ * typedef struct { ... } SilcPacketParserContext;
+ *
+ * DESCRIPTION
+ *
+ * This context is used in packet reception when silc_packet_receive_process
+ * function calls parser callback that performs the actual packet decryption
+ * and parsing. This context is sent as argument to the parser function.
+ * This context must be free'd by the parser callback function.
+ *
+ * Following description of the fields:
+ *
+ * SilcPacketContext *packet
+ *
+ * The actual packet received from the network. In this phase the
+ * context is not parsed, only the packet->buffer is allocated and
+ * it includes the raw packet data, which is encrypted.
+ *
+ * SilcSocketConnection sock
+ *
+ * The associated connection.
+ *
+ * void *context
+ *
+ * User context that is sent to the silc_packet_receive_process
+ * function. This usually includes application and connection specific
+ * data.
+ *
+ ***/
typedef struct {
SilcPacketContext *packet;
SilcSocketConnection sock;
void *context;
} SilcPacketParserContext;
-/* The parser callback function. */
+/****f* silccore/SilcPacketAPI/SilcPacketParserCallback
+ *
+ * SYNOPSIS
+ *
+ * typedef void (*SilcPacketParserCallback)(SilcPacketParserContext
+ * *parse_context);
+ *
+ * DESCRIPTION
+ *
+ * This callback is given to the silc_packet_receive_process function.
+ * The callback is called by the library every time a packet is
+ * received from the network. After the packet has been decrypted
+ * and at least partially parsed it is passed to the application
+ * for further parsing using this callback and the SilcPacketParserContext
+ * context. The application receiving the SilcPacketParserContext
+ * must free it.
+ *
+ ***/
typedef void (*SilcPacketParserCallback)(SilcPacketParserContext
*parse_context);
-/* The packet check callback in decryption phase */
+/****f* silccore/SilcPacketAPI/SilcPacketCheckDecrypt
+ *
+ * SYNOPSIS
+ *
+ * typedef int (*SilcPacketCheckDecrypt)(SilcPacketType packet_type,
+ * SilcBuffer buffer,
+ * SilcPacketContext *packet,
+ * void *context);
+ *
+ * DESCRIPTION
+ *
+ * This callback function relates to the checking whether the packet is
+ * normal packet or special packet and how it should be processed. If
+ * the callback returns TRUE the packet is normal and FALSE if the packet
+ * is special and requires special procesing. Some of the packets in
+ * SILC are special (like channel message packets that are encrypted
+ * using channel specific keys) and requires special processing. That
+ * is the reason for this callback function.
+ *
+ * The library will call this function if provided for the
+ * silc_packet_decrypt function. The `packet_type' is the type of
+ * packet received (this is also actually the first time application
+ * receives information of the received packet, next time it receives
+ * it is when the SilcPacketParserCallback function is called),
+ * the `buffer' is the raw packet data the `packet' the allocated
+ * SilcPacketContext that is filled when parsing the packet and `context'
+ * is application specific user context.
+ *
+ ***/
typedef int (*SilcPacketCheckDecrypt)(SilcPacketType packet_type,
SilcBuffer buffer,
SilcPacketContext *packet,
void *context);
-/* SILC Packet types. */
-#define SILC_PACKET_NONE 0 /* NULL, never sent */
-#define SILC_PACKET_DISCONNECT 1 /* Disconnection */
-#define SILC_PACKET_SUCCESS 2 /* Success */
-#define SILC_PACKET_FAILURE 3 /* Failure */
-#define SILC_PACKET_REJECT 4 /* Rejected */
-#define SILC_PACKET_NOTIFY 5 /* Notify message */
-#define SILC_PACKET_ERROR 6 /* Error message */
-#define SILC_PACKET_CHANNEL_MESSAGE 7 /* Message for channel */
-#define SILC_PACKET_CHANNEL_KEY 8 /* Key of the channel */
-#define SILC_PACKET_PRIVATE_MESSAGE 9 /* Private message */
-#define SILC_PACKET_PRIVATE_MESSAGE_KEY 10 /* Private message key*/
-#define SILC_PACKET_COMMAND 11 /* Command */
-#define SILC_PACKET_COMMAND_REPLY 12 /* Reply to a command */
-#define SILC_PACKET_KEY_EXCHANGE 13 /* Start of KE */
-#define SILC_PACKET_KEY_EXCHANGE_1 14 /* KE1 */
-#define SILC_PACKET_KEY_EXCHANGE_2 15 /* KE2 */
-#define SILC_PACKET_CONNECTION_AUTH_REQUEST 16 /* Request of auth meth */
-#define SILC_PACKET_CONNECTION_AUTH 17 /* Connectinon auth */
-#define SILC_PACKET_NEW_ID 18 /* Sending new ID */
-#define SILC_PACKET_NEW_CLIENT 19 /* Client registering */
-#define SILC_PACKET_NEW_SERVER 20 /* Server registering */
-#define SILC_PACKET_NEW_CHANNEL 21 /* Channel registering */
-#define SILC_PACKET_REKEY 22 /* Re-key start */
-#define SILC_PACKET_REKEY_DONE 23 /* Re-key done */
-#define SILC_PACKET_HEARTBEAT 24 /* Heartbeat */
-#define SILC_PACKET_KEY_AGREEMENT 25 /* Key Agreement request */
-#define SILC_PACKET_CELL_ROUTERS 26 /* Cell routers backup */
-
-#define SILC_PACKET_PRIVATE 200 /* Private range start */
-#define SILC_PACKET_MAX 255 /* RESERVED */
-
/* Macros */
-/* Returns true length of the packet and padded length of the packet */
+/****d* silccore/SilcPacketAPI/SILC_PACKET_LENGTH
+ *
+ * NAME
+ *
+ * #define SILC_PACKET_LENGTH ...
+ *
+ * DESCRIPTION
+ *
+ * Returns true length of the packet and padded length of the packet.
+ * This is primarily used by the libary in packet parsing phase but
+ * the application may use it as well if needed.
+ *
+ * SOURCE
+ */
#define SILC_PACKET_LENGTH(__packet, __ret_truelen, __ret_padlen) \
do { \
SILC_GET16_MSB((__ret_truelen), (__packet)->data); \
(__ret_padlen) = (((__ret_truelen) - 2) + \
SILC_PACKET_MAX_PADLEN) & ~(SILC_PACKET_MAX_PADLEN - 1); \
} while(0)
-
-/* Returns pad length of the packet */
+/***/
+
+/****d* silccore/SilcPacketAPI/SILC_PACKET_PADLEN
+ *
+ * NAME
+ *
+ * #define SILC_PACKET_PADLEN ...
+ *
+ * DESCRIPTION
+ *
+ * Returns the length of the padding in the packet. This is used
+ * by various library routines to determine needed padding length.
+ *
+ * SOURCE
+ */
#define SILC_PACKET_PADLEN(__packetlen) \
SILC_PACKET_MAX_PADLEN - ((__packetlen) - 2) % SILC_PACKET_MAX_PADLEN;
+/***/
/* Prototypes */
+
+/****f* silccore/SilcPacketAPI/silc_packet_write
+ *
+ * SYNOPSIS
+ *
+ * int silc_packet_write(int sock, SilcBuffer src);
+ *
+ * DESCRIPTION
+ *
+ * Writes data from encrypted buffer to the socket connection. If the
+ * data cannot be written at once, it will be written later with a timeout.
+ * The data is written from the data section of the buffer, not from head
+ * or tail section. This automatically pulls the data section towards end
+ * after writing the data.
+ *
+ ***/
int silc_packet_write(int sock, SilcBuffer src);
+
+/****f* silccore/SilcPacketAPI/silc_packet_send
+ *
+ * SYNOPSIS
+ *
+ * int silc_packet_send(SilcSocketConnection sock, int force_send);
+ *
+ * DESCRIPTION
+ *
+ * Actually sends the packet. This flushes the connections outgoing data
+ * buffer. If data is sent directly to the network this returns the bytes
+ * written, if error occured this returns -1 and if the data could not
+ * be written directly to the network at this time this returns -2, in
+ * which case the data should be queued by the caller and sent at some
+ * later time. If `force_send' is TRUE this attempts to write the data
+ * directly to the network, if FALSE, this returns -2.
+ *
+ ***/
int silc_packet_send(SilcSocketConnection sock, int force_send);
+
+/****f* silccore/SilcPacketAPI/silc_packet_encrypt
+ *
+ * SYNOPSIS
+ *
+ * void silc_packet_encrypt(SilcCipher cipher, SilcHmac hmac,
+ * SilcBuffer buffer, uint32 len);
+ *
+ * DESCRIPTION
+ *
+ * Encrypts a packet. This also creates HMAC of the packet before
+ * encryption and adds the HMAC at the end of the buffer. This assumes
+ * that there is enough free space at the end of the buffer to add the
+ * computed HMAC. This is the normal way of encrypting packets, if some
+ * other process of HMAC computing and encryption is needed this function
+ * cannot be used.
+ *
+ ***/
void silc_packet_encrypt(SilcCipher cipher, SilcHmac hmac,
SilcBuffer buffer, uint32 len);
+
+/****f* silccore/SilcPacketAPI/silc_packet_assemble
+ *
+ * SYNOPSIS
+ *
+ * void silc_packet_assemble(SilcPacketContext *ctx);
+ *
+ * DESCRIPTION
+ *
+ * Assembles a new packet to be ready for send out. The buffer sent as
+ * argument must include the data to be sent and it must not be encrypted.
+ * The packet also must have enough free space so that the SILC header
+ * and padding maybe added to the packet. The packet is encrypted after
+ * this function has returned.
+ *
+ * The buffer sent as argument should be something like following:
+ *
+ * --------------------------------------------
+ * | head | data | tail |
+ * --------------------------------------------
+ * ^ ^
+ * 58 bytes x bytes
+ *
+ * So that the SILC header and 1 - 16 bytes of padding can fit to
+ * the buffer. After assembly the buffer might look like this:
+ *
+ * --------------------------------------------
+ * | data | |
+ * --------------------------------------------
+ * ^ ^
+ * Start of assembled packet
+ *
+ * Packet construct is as follows (* = won't be encrypted):
+ *
+ * n bytes SILC Header
+ * 2 bytes Payload length (*)
+ * 1 byte Flags
+ * 1 byte Packet type
+ * 2 bytes Source ID Length
+ * 2 bytes Destination ID Length
+ * 1 byte Source ID Type
+ * n bytes Source ID
+ * 1 byte Destination ID Type
+ * n bytes Destination ID
+ *
+ * 1 - 16 bytes Padding
+ *
+ * n bytes Data payload
+ *
+ * All fields in the packet will be authenticated by MAC. The MAC is
+ * not computed here, it must be computed separately before encrypting
+ * the packet.
+ *
+ ***/
void silc_packet_assemble(SilcPacketContext *ctx);
+
+/****f* silccore/SilcPacketAPI/silc_packet_send_prepare
+ *
+ * SYNOPSIS
+ *
+ * void silc_packet_send_prepare(SilcSocketConnection sock,
+ * uint32 header_len,
+ * uint32 padlen,
+ * uint32 data_len);
+ *
+ * DESCRIPTION
+ *
+ * Prepare outgoing data buffer for packet sending. This moves the data
+ * area so that new packet may be added into it. If needed this allocates
+ * more space to the buffer. This handles directly the connection's
+ * outgoing buffer in SilcSocketConnection object.
+ *
+ ***/
void silc_packet_send_prepare(SilcSocketConnection sock,
uint32 header_len,
uint32 padlen,
uint32 data_len);
+
+/****f* silccore/SilcPacketAPI/silc_packet_read
+ *
+ * SYNOPSIS
+ *
+ * int silc_packet_read(int sock, SilcBuffer dest);
+ *
+ * DESCRIPTION
+ *
+ * Reads data from the socket connection into the incoming data buffer.
+ * However, this does not parse the packet, it only reads some amount from
+ * the network. If there are more data available that can be read at a time
+ * the rest of the data will be read later with a timeout and only after
+ * that the packet is ready to be parsed.
+ *
+ * The destination buffer sent as argument must be initialized before
+ * calling this function, and, the data section and the start of the tail
+ * section must be same. Ie. we add the read data to the tail section of
+ * the buffer hence the data section is the start of the buffer.
+ *
+ * This returns amount of bytes read or -1 on error or -2 on case where
+ * all of the data could not be read at once.
+ *
+ ***/
int silc_packet_read(int sock, SilcBuffer dest);
+
+/****f* silccore/SilcPacketAPI/silc_packet_receive
+ *
+ * SYNOPSIS
+ *
+ * int silc_packet_receive(SilcSocketConnection sock);
+ *
+ * DESCRIPTION
+ *
+ * Receives packet from network and reads the data into connection's
+ * incoming data buffer. If the data was read directly this returns the
+ * read bytes, if error occured this returns -1, if the data could not
+ * be read directly at this time this returns -2 in which case the data
+ * should be read again at some later time, or If EOF occured this returns
+ * 0.
+ *
+ ***/
int silc_packet_receive(SilcSocketConnection sock);
+
+/****f* silccore/SilcPacketAPI/silc_packet_decrypt
+ *
+ * SYNOPSIS
+ *
+ * int silc_packet_decrypt(SilcCipher cipher, SilcHmac hmac,
+ * SilcBuffer buffer, SilcPacketContext *packet,
+ * SilcPacketCheckDecrypt check_packet,
+ * void *context);
+ *
+ * DESCRIPTION
+ *
+ * Decrypts a packet. This assumes that typical SILC packet is the
+ * packet to be decrypted and thus checks for normal and special SILC
+ * packets and can handle both of them. This also computes and checks
+ * the HMAC of the packet. If any other special or customized decryption
+ * processing is required this function cannot be used. This returns
+ * -1 on error, 0 when packet is normal packet and 1 when the packet
+ * is special and requires special processing.
+ *
+ * The `check_packet' is a callback funtion that this function will
+ * call. The callback relates to the checking whether the packet is
+ * normal packet or special packet and how it should be processed. If
+ * the callback return TRUE the packet is normal and FALSE if the packet
+ * is special and requires special procesing.
+ *
+ ***/
int silc_packet_decrypt(SilcCipher cipher, SilcHmac hmac,
SilcBuffer buffer, SilcPacketContext *packet,
SilcPacketCheckDecrypt check_packet,
void *context);
+
+/****f* silccore/SilcPacketAPI/silc_packet_receive_process
+ *
+ * SYNOPSIS
+ *
+ * void silc_packet_receive_process(SilcSocketConnection sock,
+ * SilcCipher cipher, SilcHmac hmac,
+ * SilcPacketParserCallback parser,
+ * void *context);
+ *
+ * DESCRIPTION
+ *
+ * Processes the received data. This checks the received data and
+ * calls parser callback that handles the actual packet decryption
+ * and parsing. If more than one packet was received this calls the
+ * parser multiple times. The parser callback will get context
+ * SilcPacketParserContext that includes the packet and the `context'
+ * sent to this function.
+ *
+ ***/
void silc_packet_receive_process(SilcSocketConnection sock,
SilcCipher cipher, SilcHmac hmac,
SilcPacketParserCallback parser,
void *context);
+
+/****f* silccore/SilcPacketAPI/silc_packet_parse
+ *
+ * SYNOPSIS
+ *
+ * SilcPacketType silc_packet_parse(SilcPacketContext *ctx);
+ *
+ * DESCRIPTION
+ *
+ * Parses the packet. This is called when a whole packet is ready to be
+ * parsed. The buffer sent must be already decrypted before calling this
+ * function. The len argument must be the true length of the packet. This
+ * function returns the type of the packet. The data section of the
+ * buffer is parsed, not head or tail sections.
+ *
+ ***/
SilcPacketType silc_packet_parse(SilcPacketContext *ctx);
+
+/****f* silccore/SilcPacketAPI/silc_packet_parse_special
+ *
+ * SYNOPSIS
+ *
+ * SilcPacketType silc_packet_parse_special(SilcPacketContext *ctx);
+ *
+ * DESCRIPTION
+ *
+ * Perform special SILC Packet header parsing. This is required to some
+ * packet types that have the data payload encrypted with different key
+ * than the header area plus padding of the packet. Hence, this parses
+ * the header in a way that it does not take the data area into account
+ * and parses the header and padding area only.
+ *
+ ***/
SilcPacketType silc_packet_parse_special(SilcPacketContext *ctx);
+
+/****f* silccore/SilcPacketAPI/silc_packet_context_alloc
+ *
+ * SYNOPSIS
+ *
+ * SilcPacketContext *silc_packet_context_alloc();
+ *
+ * DESCRIPTION
+ *
+ * Allocates a packet context. Packet contexts are used when
+ * packets are assembled and parsed. The context is freed by the
+ * silc_packet_context_free function.
+ *
+ ***/
SilcPacketContext *silc_packet_context_alloc();
+
+/****f* silccore/SilcPacketAPI/silc_packet_context_dup
+ *
+ * SYNOPSIS
+ *
+ * SilcPacketContext *silc_packet_context_dup(SilcPacketContext *ctx);
+ *
+ * DESCRIPTION
+ *
+ * Duplicates the packet context. It actually does not duplicate
+ * any data, instead a reference counter is increased.
+ *
+ ***/
SilcPacketContext *silc_packet_context_dup(SilcPacketContext *ctx);
+
+/****f* silccore/SilcPacketAPI/silc_packet_context_free
+ *
+ * SYNOPSIS
+ *
+ * void silc_packet_context_free(SilcPacketContext *ctx);
+ *
+ * DESCRIPTION
+ *
+ * Frees the packet context. The context is actually freed when the
+ * reference counter hits zero.
+ *
+ ***/
void silc_packet_context_free(SilcPacketContext *ctx);
#endif