updates.
[silc.git] / apps / silcd / server.h
1 /*
2
3   server.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2001 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; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef SERVER_H
22 #define SERVER_H
23
24 /* Forward declaration for SILC Server object. The actual object is
25    defined in internal header file for server routines. I want to keep
26    the object private hence this declaration. */
27 typedef struct SilcServerStruct *SilcServer;
28
29 /* Forward declaration of backup server context */
30 typedef struct SilcServerBackupStruct *SilcServerBackup;
31
32 #define SILC_SERVER_MAX_CONNECTIONS 1000
33
34 /* General definitions */
35
36 /* SILC port */
37 #define SILC_PORT 768;
38
39 /* Server and router. Used internally by the code. */
40 #define SILC_SERVER 0
41 #define SILC_ROUTER 1
42 #define SILC_BACKUP_ROUTER 2
43
44 /* Connection retry timeout. We implement exponential backoff algorithm
45    in connection retry. The interval of timeuot grows when retry count
46    grows. */
47 #define SILC_SERVER_RETRY_COUNT        4         /* Max retry count */
48 #define SILC_SERVER_RETRY_MULTIPLIER   7 / 4     /* Interval growth */
49 #define SILC_SERVER_RETRY_RANDOMIZER   2         /* timeout += rnd % 2 */
50 #define SILC_SERVER_RETRY_INTERVAL_MIN 10        /* Min retry timeout */
51 #define SILC_SERVER_RETRY_INTERVAL_MAX 600       /* Max generated timeout */
52
53 /* 
54    Silc Server Params.
55
56    Structure to hold various default parameters for server that can be
57    given before running the server. 
58
59 */
60 typedef struct {
61   uint32 retry_count;
62   uint32 retry_interval_min;
63   uint32 retry_interval_min_usec;
64   uint32 retry_interval_max;
65   char retry_keep_trying;
66
67   uint32 protocol_timeout;
68   uint32 protocol_timeout_usec;
69
70   char require_reverse_mapping;
71 } *SilcServerParams;
72
73 /* Callback function that is called after the key exchange and connection
74    authentication protocols has been completed with a remote router. The
75    `server_entry' is the remote router entry. */
76 typedef void (*SilcServerConnectRouterCallback)(SilcServer server,
77                                                 SilcServerEntry server_entry,
78                                                 void *context);
79
80 typedef struct {
81   SilcSocketConnection sock;
82
83   /* Remote host name and port */
84   char *remote_host;
85   int remote_port;
86   bool backup;
87   
88   /* Current connection retry info */
89   uint32 retry_count;
90   uint32 retry_timeout;
91
92   /* Back pointer to server */
93   SilcServer server;
94
95   SilcServerConnectRouterCallback callback;
96   void *callback_context;
97 } *SilcServerConnection;
98
99 /* Macros */
100
101 /* This macro is used to send notify messages with formatted string. The
102    string is formatted with arguments and the formatted string is sent as
103    argument. */
104 #define SILC_SERVER_SEND_NOTIFY(server, sock, type, fmt)        \
105 do {                                                            \
106   char *__fmt__ = silc_format fmt;                              \
107   silc_server_send_notify(server, sock, FALSE,                  \
108                           type, 1, __fmt__, strlen(__fmt__));   \
109   silc_free(__fmt__);                                           \
110 } while(0);
111
112 /* Check whether rekey protocol is active */
113 #define SILC_SERVER_IS_REKEY(sock)                                      \
114   (sock->protocol && sock->protocol->protocol &&                        \
115    sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)
116
117 /* Prototypes */
118 int silc_server_alloc(SilcServer *new_server);
119 void silc_server_free(SilcServer server);
120 int silc_server_init(SilcServer server);
121 void silc_server_daemonise(SilcServer server);
122 void silc_server_run(SilcServer server);
123 void silc_server_stop(SilcServer server);
124 void silc_server_start_key_exchange(SilcServer server,
125                                     SilcServerConnection sconn,
126                                     int sock);
127 void silc_server_packet_parse(SilcPacketParserContext *parser_context);
128 void silc_server_packet_parse_type(SilcServer server, 
129                                    SilcSocketConnection sock,
130                                    SilcPacketContext *packet);
131 void silc_server_create_connection(SilcServer server,
132                                    char *remote_host, uint32 port);
133 void silc_server_close_connection(SilcServer server,
134                                   SilcSocketConnection sock);
135 void silc_server_free_client_data(SilcServer server, 
136                                   SilcSocketConnection sock,
137                                   SilcClientEntry client, 
138                                   int notify,
139                                   char *signoff);
140 void silc_server_free_sock_user_data(SilcServer server, 
141                                      SilcSocketConnection sock);
142 void silc_server_remove_from_channels(SilcServer server, 
143                                       SilcSocketConnection sock,
144                                       SilcClientEntry client,
145                                       int notify,
146                                       char *signoff_message,
147                                       int keygen);
148 int silc_server_remove_from_one_channel(SilcServer server, 
149                                         SilcSocketConnection sock,
150                                         SilcChannelEntry channel,
151                                         SilcClientEntry client,
152                                         int notify);
153 void silc_server_disconnect_remote(SilcServer server,
154                                    SilcSocketConnection sock,
155                                    const char *fmt, ...);
156 SilcChannelEntry silc_server_create_new_channel(SilcServer server, 
157                                                 SilcServerID *router_id,
158                                                 char *cipher, 
159                                                 char *hmac,
160                                                 char *channel_name,
161                                                 int broadcast);
162 SilcChannelEntry 
163 silc_server_create_new_channel_with_id(SilcServer server, 
164                                        char *cipher, 
165                                        char *hmac,
166                                        char *channel_name,
167                                        SilcChannelID *channel_id,
168                                        int broadcast);
169 bool silc_server_create_channel_key(SilcServer server, 
170                                     SilcChannelEntry channel,
171                                     uint32 key_len);
172 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
173                                               SilcBuffer key_payload,
174                                               SilcChannelEntry channel);
175 void silc_server_perform_heartbeat(SilcSocketConnection sock,
176                                    void *hb_context);
177 void silc_server_announce_get_channel_users(SilcServer server,
178                                             SilcChannelEntry channel,
179                                             SilcBuffer *channel_users,
180                                             SilcBuffer *channel_users_modes);
181 void silc_server_announce_get_channels(SilcServer server,
182                                        SilcIDList id_list,
183                                        SilcBuffer *channels,
184                                        SilcBuffer *channel_users,
185                                        SilcBuffer **channel_users_modes,
186                                        uint32 *channel_users_modes_c,
187                                        SilcChannelID ***channel_ids,
188                                        unsigned long creation_time);
189 void silc_server_announce_servers(SilcServer server, bool global,
190                                   unsigned long creation_time);
191 void silc_server_announce_clients(SilcServer server,
192                                   unsigned long creationg_time);
193 void silc_server_announce_channels(SilcServer server,
194                                    unsigned long creationg_time);
195 void silc_server_get_users_on_channel(SilcServer server,
196                                       SilcChannelEntry channel,
197                                       SilcBuffer *user_list,
198                                       SilcBuffer *mode_list,
199                                       uint32 *user_count);
200 void silc_server_save_users_on_channel(SilcServer server,
201                                        SilcSocketConnection sock,
202                                        SilcChannelEntry channel,
203                                        SilcClientID *noadd,
204                                        SilcBuffer user_list,
205                                        SilcBuffer mode_list,
206                                        uint32 user_count);
207 SilcSocketConnection silc_server_get_client_route(SilcServer server,
208                                                   unsigned char *id_data,
209                                                   uint32 id_len,
210                                                   SilcClientID *client_id,
211                                                   SilcIDListData *idata);
212 SilcBuffer silc_server_get_client_channel_list(SilcServer server,
213                                                SilcClientEntry client);
214 SilcClientEntry silc_server_get_client_resolve(SilcServer server,
215                                                SilcClientID *client_id);
216
217 #endif