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   char *backup_replace_ip;
88   int backup_replace_port;
89   
90   /* Current connection retry info */
91   uint32 retry_count;
92   uint32 retry_timeout;
93
94   /* Back pointer to server */
95   SilcServer server;
96
97   SilcServerConnectRouterCallback callback;
98   void *callback_context;
99 } *SilcServerConnection;
100
101 /* Macros */
102
103 /* This macro is used to send notify messages with formatted string. The
104    string is formatted with arguments and the formatted string is sent as
105    argument. */
106 #define SILC_SERVER_SEND_NOTIFY(server, sock, type, fmt)        \
107 do {                                                            \
108   char *__fmt__ = silc_format fmt;                              \
109   silc_server_send_notify(server, sock, FALSE,                  \
110                           type, 1, __fmt__, strlen(__fmt__));   \
111   silc_free(__fmt__);                                           \
112 } while(0);
113
114 /* Check whether rekey protocol is active */
115 #define SILC_SERVER_IS_REKEY(sock)                                      \
116   (sock->protocol && sock->protocol->protocol &&                        \
117    sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)
118
119 /* Prototypes */
120 int silc_server_alloc(SilcServer *new_server);
121 void silc_server_free(SilcServer server);
122 int silc_server_init(SilcServer server);
123 void silc_server_daemonise(SilcServer server);
124 void silc_server_run(SilcServer server);
125 void silc_server_stop(SilcServer server);
126 void silc_server_start_key_exchange(SilcServer server,
127                                     SilcServerConnection sconn,
128                                     int sock);
129 void silc_server_packet_parse(SilcPacketParserContext *parser_context,
130                               void *context);
131 void silc_server_packet_parse_type(SilcServer server, 
132                                    SilcSocketConnection sock,
133                                    SilcPacketContext *packet);
134 void silc_server_create_connection(SilcServer server,
135                                    char *remote_host, uint32 port);
136 void silc_server_close_connection(SilcServer server,
137                                   SilcSocketConnection sock);
138 void silc_server_free_client_data(SilcServer server, 
139                                   SilcSocketConnection sock,
140                                   SilcClientEntry client, 
141                                   int notify,
142                                   char *signoff);
143 void silc_server_free_sock_user_data(SilcServer server, 
144                                      SilcSocketConnection sock);
145 void silc_server_remove_from_channels(SilcServer server, 
146                                       SilcSocketConnection sock,
147                                       SilcClientEntry client,
148                                       int notify,
149                                       char *signoff_message,
150                                       int keygen);
151 int silc_server_remove_from_one_channel(SilcServer server, 
152                                         SilcSocketConnection sock,
153                                         SilcChannelEntry channel,
154                                         SilcClientEntry client,
155                                         int notify);
156 void silc_server_disconnect_remote(SilcServer server,
157                                    SilcSocketConnection sock,
158                                    const char *fmt, ...);
159 SilcChannelEntry silc_server_create_new_channel(SilcServer server, 
160                                                 SilcServerID *router_id,
161                                                 char *cipher, 
162                                                 char *hmac,
163                                                 char *channel_name,
164                                                 int broadcast);
165 SilcChannelEntry 
166 silc_server_create_new_channel_with_id(SilcServer server, 
167                                        char *cipher, 
168                                        char *hmac,
169                                        char *channel_name,
170                                        SilcChannelID *channel_id,
171                                        int broadcast);
172 bool silc_server_create_channel_key(SilcServer server, 
173                                     SilcChannelEntry channel,
174                                     uint32 key_len);
175 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
176                                               SilcBuffer key_payload,
177                                               SilcChannelEntry channel);
178 void silc_server_perform_heartbeat(SilcSocketConnection sock,
179                                    void *hb_context);
180 void silc_server_announce_get_channel_users(SilcServer server,
181                                             SilcChannelEntry channel,
182                                             SilcBuffer *channel_users,
183                                             SilcBuffer *channel_users_modes);
184 void silc_server_announce_get_channels(SilcServer server,
185                                        SilcIDList id_list,
186                                        SilcBuffer *channels,
187                                        SilcBuffer *channel_users,
188                                        SilcBuffer **channel_users_modes,
189                                        uint32 *channel_users_modes_c,
190                                        SilcChannelID ***channel_ids,
191                                        unsigned long creation_time);
192 void silc_server_announce_servers(SilcServer server, bool global,
193                                   unsigned long creation_time,
194                                   SilcSocketConnection remote);
195 void silc_server_announce_clients(SilcServer server,
196                                   unsigned long creation_time,
197                                   SilcSocketConnection remote);
198 void silc_server_announce_channels(SilcServer server,
199                                    unsigned long creation_time,
200                                    SilcSocketConnection remote);
201 void silc_server_get_users_on_channel(SilcServer server,
202                                       SilcChannelEntry channel,
203                                       SilcBuffer *user_list,
204                                       SilcBuffer *mode_list,
205                                       uint32 *user_count);
206 void silc_server_save_users_on_channel(SilcServer server,
207                                        SilcSocketConnection sock,
208                                        SilcChannelEntry channel,
209                                        SilcClientID *noadd,
210                                        SilcBuffer user_list,
211                                        SilcBuffer mode_list,
212                                        uint32 user_count);
213 SilcSocketConnection silc_server_get_client_route(SilcServer server,
214                                                   unsigned char *id_data,
215                                                   uint32 id_len,
216                                                   SilcClientID *client_id,
217                                                   SilcIDListData *idata);
218 SilcBuffer silc_server_get_client_channel_list(SilcServer server,
219                                                SilcClientEntry client);
220 SilcClientEntry silc_server_get_client_resolve(SilcServer server,
221                                                SilcClientID *client_id);
222
223 #endif