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 #define SILC_SERVER_MAX_CONNECTIONS 10000
30
31 /* General definitions */
32
33 /* Server and router. Used internally by the code. */
34 #define SILC_SERVER 0
35 #define SILC_ROUTER 1
36
37 /* Connection retry timeout. We implement exponential backoff algorithm
38    in connection retry. The interval of timeuot grows when retry count
39    grows. */
40 #define SILC_SERVER_RETRY_COUNT        4         /* Max retry count */
41 #define SILC_SERVER_RETRY_MULTIPLIER   7 / 4     /* Interval growth */
42 #define SILC_SERVER_RETRY_RANDOMIZER   2         /* timeout += rnd % 2 */
43 #define SILC_SERVER_RETRY_INTERVAL_MIN 10        /* Min retry timeout */
44 #define SILC_SERVER_RETRY_INTERVAL_MAX 600       /* Max generated timeout */
45
46 /* 
47    Silc Server Params.
48
49    Structure to hold various default parameters for server that can be
50    given before running the server. 
51
52 */
53 typedef struct {
54   unsigned int retry_count;
55   unsigned long retry_interval_min;
56   unsigned long retry_interval_min_usec;
57   unsigned long retry_interval_max;
58   char retry_keep_trying;
59
60   unsigned long protocol_timeout;
61   unsigned long protocol_timeout_usec;
62
63   char require_reverse_mapping;
64 } *SilcServerParams;
65
66 /* Macros */
67
68 /* This macro is used to send notify messages with formatted string. The
69    string is formatted with arguments and the formatted string is sent as
70    argument. */
71 #define SILC_SERVER_SEND_NOTIFY(server, sock, type, fmt)        \
72 do {                                                            \
73   char *__fmt__ = silc_format fmt;                              \
74   silc_server_send_notify(server, sock, FALSE,                  \
75                           type, 1, __fmt__, strlen(__fmt__));   \
76   silc_free(__fmt__);                                           \
77 } while(0);
78
79 /* Prototypes */
80 int silc_server_alloc(SilcServer *new_server);
81 void silc_server_free(SilcServer server);
82 int silc_server_init(SilcServer server);
83 void silc_server_daemonise(SilcServer server);
84 void silc_server_run(SilcServer server);
85 void silc_server_stop(SilcServer server);
86 void silc_server_packet_parse(SilcPacketParserContext *parser_context);
87 void silc_server_packet_parse_type(SilcServer server, 
88                                    SilcSocketConnection sock,
89                                    SilcPacketContext *packet);
90 void silc_server_close_connection(SilcServer server,
91                                   SilcSocketConnection sock);
92 void silc_server_free_sock_user_data(SilcServer server, 
93                                      SilcSocketConnection sock);
94 int silc_server_channel_has_global(SilcChannelEntry channel);
95 int silc_server_channel_has_local(SilcChannelEntry channel);
96 int silc_server_remove_clients_by_server(SilcServer server, 
97                                          SilcServerEntry entry);
98 void silc_server_remove_from_channels(SilcServer server, 
99                                       SilcSocketConnection sock,
100                                       SilcClientEntry client);
101 int silc_server_remove_from_one_channel(SilcServer server, 
102                                         SilcSocketConnection sock,
103                                         SilcChannelEntry channel,
104                                         SilcClientEntry client,
105                                         int notify);
106 int silc_server_client_on_channel(SilcClientEntry client,
107                                   SilcChannelEntry channel);
108 void silc_server_disconnect_remote(SilcServer server,
109                                    SilcSocketConnection sock,
110                                    const char *fmt, ...);
111 SilcChannelEntry silc_server_create_new_channel(SilcServer server, 
112                                                 SilcServerID *router_id,
113                                                 char *cipher, 
114                                                 char *channel_name,
115                                                 int broadcast);
116 SilcChannelEntry 
117 silc_server_create_new_channel_with_id(SilcServer server, 
118                                        char *cipher, 
119                                        char *channel_name,
120                                        SilcChannelID *channel_id,
121                                        int broadcast);
122 void silc_server_create_channel_key(SilcServer server, 
123                                     SilcChannelEntry channel,
124                                     unsigned int key_len);
125 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
126                                               SilcBuffer key_payload,
127                                               SilcChannelEntry channel);
128 void silc_server_perform_heartbeat(SilcSocketConnection sock,
129                                    void *hb_context);
130 void silc_server_announce_servers(SilcServer server);
131 void silc_server_announce_clients(SilcServer server);
132 void silc_server_announce_channels(SilcServer server);
133
134 #endif