d7b2d3da912461110cd92f94a1c591eb5445185e
[silc.git] / apps / silcd / server.h
1 /*
2
3   server.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2002 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 of backup server context */
25 typedef struct SilcServerBackupStruct *SilcServerBackup;
26
27 /* Callback function that is called after the key exchange and connection
28    authentication protocols has been completed with a remote router. The
29    `server_entry' is the remote router entry or NULL on error. */
30 typedef void (*SilcServerConnectRouterCallback)(SilcServer server,
31                                                 SilcServerEntry server_entry,
32                                                 void *context);
33
34 /* Connection structure used when connection to remote */
35 typedef struct {
36   SilcSocketConnection sock;
37
38   /* Remote host name and port */
39   char *remote_host;
40   int remote_port;
41   bool backup;
42   char *backup_replace_ip;
43   int backup_replace_port;
44   bool no_reconnect;
45
46   /* Connection configuration (maybe NULL) */
47   SilcServerConfigRef conn;
48
49   /* Current connection retry info */
50   SilcUInt32 retry_count;
51   SilcUInt32 retry_timeout;
52
53   SilcServerConnectRouterCallback callback;
54   void *callback_context;
55 } *SilcServerConnection;
56
57 /* General definitions */
58
59 /* SILC port */
60 #define SILC_PORT 706
61
62 /* Server and router. Used internally by the code. */
63 #define SILC_SERVER 0
64 #define SILC_ROUTER 1
65 #define SILC_BACKUP_ROUTER 2
66
67 /* Default parameter values */
68
69 /* Connection retry timeout. We implement exponential backoff algorithm
70    in connection retry. The interval of timeout grows when retry count
71    grows. */
72 #define SILC_SERVER_RETRY_COUNT        7         /* Max retry count */
73 #define SILC_SERVER_RETRY_MULTIPLIER   2         /* Interval growth */
74 #define SILC_SERVER_RETRY_RANDOMIZER   2         /* timeout += rnd % 2 */
75 #define SILC_SERVER_RETRY_INTERVAL_MIN 10        /* Min retry timeout */
76 #define SILC_SERVER_RETRY_INTERVAL_MAX 600       /* Max generated timeout */
77
78 #define SILC_SERVER_KEEPALIVE          300       /* Heartbeat interval */
79 #define SILC_SERVER_CHANNEL_REKEY      3600      /* Channel rekey interval */
80 #define SILC_SERVER_REKEY              3600      /* Session rekey interval */
81 #define SILC_SERVER_SKE_TIMEOUT        60        /* SKE timeout */
82 #define SILC_SERVER_CONNAUTH_TIMEOUT   60        /* CONN_AUTH timeout */
83 #define SILC_SERVER_MAX_CONNECTIONS    1000      /* Max connections */
84 #define SILC_SERVER_MAX_CONNECTIONS_SINGLE 1000  /* Max connections per host */
85 #define SILC_SERVER_LOG_FLUSH_DELAY    300       /* Default log flush delay */
86 #define SILC_SERVER_QOS_RATE_LIMIT     10        /* Default QoS rate limit */
87 #define SILC_SERVER_QOS_BYTES_LIMIT    2048      /* Default QoS bytes limit */
88 #define SILC_SERVER_QOS_LIMIT_SEC      0         /* Default QoS limit sec */
89 #define SILC_SERVER_QOS_LIMIT_USEC     500000    /* Default QoS limit usec */
90
91 /* Macros */
92
93 /* This macro is used to send notify messages with formatted string. The
94    string is formatted with arguments and the formatted string is sent as
95    argument. */
96 #define SILC_SERVER_SEND_NOTIFY(server, sock, type, fmt)        \
97 do {                                                            \
98   char *__fmt__ = silc_format fmt;                              \
99   silc_server_send_notify(server, sock, FALSE,                  \
100                           type, 1, __fmt__, strlen(__fmt__));   \
101   silc_free(__fmt__);                                           \
102 } while(0)
103
104 /* Send notify to operators */
105 #define SILC_SERVER_SEND_OPERS(server, route, local, type, fmt)         \
106 do {                                                                    \
107   char *__fmt__ = silc_format fmt;                                      \
108   silc_server_send_opers_notify(server, route, local,                   \
109                                 type, 1, __fmt__, strlen(__fmt__));     \
110   silc_free(__fmt__);                                                   \
111 } while(0)
112
113 /* Check whether rekey protocol is active */
114 #define SILC_SERVER_IS_REKEY(sock)                                      \
115   (sock->protocol && sock->protocol->protocol &&                        \
116    sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)
117
118 /* Check whether backup resuming protocol is active */
119 #define SILC_SERVER_IS_BACKUP(sock)                                     \
120   (sock->protocol && sock->protocol->protocol &&                        \
121    sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_BACKUP)
122
123 /* Output an error message wether to stderr or LOG_ERROR if we are in the
124    background. */
125 #define SILC_SERVER_LOG_ERROR(fmt) silc_server_stderr(silc_format fmt)
126
127 /* Prototypes */
128 int silc_server_alloc(SilcServer *new_server);
129 void silc_server_free(SilcServer server);
130 bool silc_server_init(SilcServer server);
131 bool silc_server_rehash(SilcServer server);
132 void silc_server_run(SilcServer server);
133 void silc_server_stop(SilcServer server);
134 void silc_server_start_key_exchange(SilcServer server,
135                                     SilcServerConnection sconn,
136                                     int sock);
137 bool silc_server_packet_parse(SilcPacketParserContext *parser_context,
138                               void *context);
139 void silc_server_packet_parse_type(SilcServer server,
140                                    SilcSocketConnection sock,
141                                    SilcPacketContext *packet);
142 void silc_server_create_connection(SilcServer server,
143                                    const char *remote_host, SilcUInt32 port);
144 void silc_server_close_connection(SilcServer server,
145                                   SilcSocketConnection sock);
146 void silc_server_free_client_data(SilcServer server,
147                                   SilcSocketConnection sock,
148                                   SilcClientEntry client,
149                                   int notify,
150                                   const char *signoff);
151 void silc_server_free_sock_user_data(SilcServer server,
152                                      SilcSocketConnection sock,
153                                      const char *signoff_message);
154 void silc_server_remove_from_channels(SilcServer server,
155                                       SilcSocketConnection sock,
156                                       SilcClientEntry client,
157                                       bool notify,
158                                       const char *signoff_message,
159                                       bool keygen, bool killed);
160 bool silc_server_remove_from_one_channel(SilcServer server,
161                                          SilcSocketConnection sock,
162                                          SilcChannelEntry channel,
163                                          SilcClientEntry client,
164                                          bool notify);
165 void silc_server_disconnect_remote(SilcServer server,
166                                    SilcSocketConnection sock,
167                                    SilcStatus status, ...);
168 SilcChannelEntry silc_server_create_new_channel(SilcServer server,
169                                                 SilcServerID *router_id,
170                                                 char *cipher,
171                                                 char *hmac,
172                                                 char *channel_name,
173                                                 int broadcast);
174 SilcChannelEntry
175 silc_server_create_new_channel_with_id(SilcServer server,
176                                        char *cipher,
177                                        char *hmac,
178                                        char *channel_name,
179                                        SilcChannelID *channel_id,
180                                        int broadcast);
181 bool silc_server_create_channel_key(SilcServer server,
182                                     SilcChannelEntry channel,
183                                     SilcUInt32 key_len);
184 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
185                                               SilcBuffer key_payload,
186                                               SilcChannelEntry channel);
187 void silc_server_perform_heartbeat(SilcSocketConnection sock,
188                                    void *hb_context);
189 void silc_server_announce_get_channel_topic(SilcServer server,
190                                             SilcChannelEntry channel,
191                                             SilcBuffer *topic);
192 void silc_server_announce_get_channel_users(SilcServer server,
193                                             SilcChannelEntry channel,
194                                             SilcBuffer *channel_modes,
195                                             SilcBuffer *channel_users,
196                                             SilcBuffer *channel_users_modes);
197 void silc_server_announce_get_channels(SilcServer server,
198                                        SilcIDList id_list,
199                                        SilcBuffer *channels,
200                                        SilcBuffer **channel_modes,
201                                        SilcBuffer *channel_users,
202                                        SilcBuffer **channel_users_modes,
203                                        SilcUInt32 *channel_users_modes_c,
204                                        SilcBuffer **channel_topics,
205                                        SilcChannelID ***channel_ids,
206                                        unsigned long creation_time);
207 void silc_server_announce_servers(SilcServer server, bool global,
208                                   unsigned long creation_time,
209                                   SilcSocketConnection remote);
210 void silc_server_announce_clients(SilcServer server,
211                                   unsigned long creation_time,
212                                   SilcSocketConnection remote);
213 void silc_server_announce_channels(SilcServer server,
214                                    unsigned long creation_time,
215                                    SilcSocketConnection remote);
216 bool silc_server_get_users_on_channel(SilcServer server,
217                                       SilcChannelEntry channel,
218                                       SilcBuffer *user_list,
219                                       SilcBuffer *mode_list,
220                                       SilcUInt32 *user_count);
221 void silc_server_save_users_on_channel(SilcServer server,
222                                        SilcSocketConnection sock,
223                                        SilcChannelEntry channel,
224                                        SilcClientID *noadd,
225                                        SilcBuffer user_list,
226                                        SilcBuffer mode_list,
227                                        SilcUInt32 user_count);
228 void silc_server_save_user_channels(SilcServer server,
229                                     SilcSocketConnection sock,
230                                     SilcClientEntry client,
231                                     SilcBuffer channels,
232                                     SilcBuffer channels_user_modes);
233 SilcSocketConnection
234 silc_server_get_client_route(SilcServer server,
235                              unsigned char *id_data,
236                              SilcUInt32 id_len,
237                              SilcClientID *client_id,
238                              SilcIDListData *idata,
239                              SilcClientEntry *client_entry);
240 SilcBuffer silc_server_get_client_channel_list(SilcServer server,
241                                                SilcClientEntry client,
242                                                bool get_private,
243                                                bool get_secret,
244                                                SilcBuffer *user_mode_list);
245 void silc_server_stderr(char *message);
246
247 #endif