Merged silc_1_1_branch to trunk.
[silc.git] / apps / silcd / server_util.h
1 /*
2
3   server_util.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2005, 2007 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; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 #ifndef SERVER_UTIL_H
21 #define SERVER_UTIL_H
22
23 /* This function removes all client entries that are originated from
24    `router' and are owned by `entry'.  `router' and `entry' can be same
25    too.  If `server_signoff' is TRUE then SERVER_SIGNOFF notify is
26    distributed to our local clients. */
27 SilcBool silc_server_remove_clients_by_server(SilcServer server,
28                                           SilcServerEntry router,
29                                           SilcServerEntry entry,
30                                           SilcBool server_signoff);
31
32 /* Updates the clients that are originated from the `from' to be originated
33    from the `to'. If the `resolve_real_server' is TRUE then this will
34    attempt to figure out which clients really are originated from the
35    `from' and which are originated from a server that we have connection
36    to, when we've acting as backup router. If it is FALSE the `to' will
37    be the new source.  If `from' is NULL then all clients (except locally
38    connected) are updated `to'. */
39 void silc_server_update_clients_by_server(SilcServer server,
40                                           SilcServerEntry from,
41                                           SilcServerEntry to,
42                                           SilcBool resolve_real_server);
43
44 /* Updates servers that are from `from' to be originated from `to'.  This
45    will also update the server's connection to `to's connection. */
46 void silc_server_update_servers_by_server(SilcServer server,
47                                           SilcServerEntry from,
48                                           SilcServerEntry to);
49
50 /* Toggles the enabled/disabled status of local server connections.  Packets
51    can be sent to the servers when `toggle_enabled' is TRUE and will be
52    dropped if `toggle_enabled' is FALSE, after this function is called. */
53 void silc_server_local_servers_toggle_enabled(SilcServer server,
54                                               SilcBool toggle_enabled);
55
56 /* Removes servers that are originated from the `from'.  The server
57    entry is deleted in this function.  If `remove_clients' is TRUE then
58    all clients originated from the server are removed too, and server
59    signoff is sent.  Note that this does not remove the `from'.  This
60    also does not remove locally connected servers. */
61 void silc_server_remove_servers_by_server(SilcServer server,
62                                           SilcServerEntry from,
63                                           SilcBool remove_clients);
64
65 /* Removes channels that are from `from. */
66 void silc_server_remove_channels_by_server(SilcServer server,
67                                            SilcServerEntry from);
68
69 /* Updates channels that are from `from' to be originated from `to'.  */
70 void silc_server_update_channels_by_server(SilcServer server,
71                                            SilcServerEntry from,
72                                            SilcServerEntry to);
73
74 /* Checks whether given channel has global users.  If it does this returns
75    TRUE and FALSE if there is only locally connected clients on the channel. */
76 SilcBool silc_server_channel_has_global(SilcChannelEntry channel);
77
78 /* Checks whether given channel has locally connected users.  If it does this
79    returns TRUE and FALSE if there is not one locally connected client. */
80 SilcBool silc_server_channel_has_local(SilcChannelEntry channel);
81
82 /* This function removes the channel and all users on the channel, unless
83    the channel is permanent.  In this case the channel is disabled but all
84    users are removed from the channel.  Returns TRUE if the channel is
85    destroyed totally, and FALSE if it is permanent and remains. */
86 SilcBool silc_server_channel_delete(SilcServer server,
87                                     SilcChannelEntry channel);
88
89 /* Returns TRUE if the given client is on the channel.  FALSE if not.
90    This works because we assure that the user list on the channel is
91    always in up to date thus we can only check the channel list from
92    `client' which is faster than checking the user list from `channel'. */
93 SilcBool silc_server_client_on_channel(SilcClientEntry client,
94                                        SilcChannelEntry channel,
95                                        SilcChannelClientEntry *chl);
96
97 /* Find number of sockets by IP address indicated by `ip'. Returns 0 if
98    socket connections with the IP address does not exist. */
99 SilcUInt32 silc_server_num_sockets_by_ip(SilcServer server, const char *ip,
100                                          SilcConnectionType type);
101
102 /* Find number of sockets by IP address indicated by remote host, indicated
103    by `ip' or `hostname', `port', and `type'.  Returns 0 if socket connections
104    does not exist. If `ip' is provided then `hostname' is ignored. */
105 SilcUInt32 silc_server_num_sockets_by_remote(SilcServer server,
106                                              const char *ip,
107                                              const char *hostname,
108                                              SilcUInt16 port,
109                                              SilcConnectionType type);
110
111 /* Get public key by key usage and key context. */
112 SilcPublicKey silc_server_get_public_key(SilcServer server,
113                                          SilcSKRKeyUsage usage,
114                                          void *key_context);
115
116 /* Find public key by client for identification purposes.  Finds keys
117    with SILC_SKR_USAGE_IDENTIFICATION. */
118 SilcBool silc_server_get_public_key_by_client(SilcServer server,
119                                               SilcClientEntry client,
120                                               SilcPublicKey *public_key);
121
122 /* Check whether the connection `sock' is allowed to connect to us.  This
123    checks for example whether there is too much connections for this host,
124    and required version for the host etc. */
125 SilcBool silc_server_connection_allowed(SilcServer server,
126                                         SilcPacketStream sock,
127                                         SilcConnectionType type,
128                                         SilcServerConfigConnParams *global,
129                                         SilcServerConfigConnParams *params,
130                                         SilcSKE ske);
131
132 /* Checks that client has rights to add or remove channel modes. If any
133    of the checks fails FALSE is returned. */
134 SilcBool silc_server_check_cmode_rights(SilcServer server,
135                                         SilcChannelEntry channel,
136                                         SilcChannelClientEntry client,
137                                         SilcUInt32 mode);
138
139 /* Check that the client has rights to change its user mode.  Returns
140    FALSE if setting some mode is not allowed. */
141 SilcBool silc_server_check_umode_rights(SilcServer server,
142                                     SilcClientEntry client,
143                                     SilcUInt32 mode);
144
145 /* This function is used to send the notify packets and motd to the
146    incoming client connection. */
147 void silc_server_send_connect_notifys(SilcServer server,
148                                       SilcPacketStream sock,
149                                       SilcClientEntry client);
150
151 /* Kill the client indicated by `remote_client' sending KILLED notify
152    to the client, to all channels client has joined and to primary
153    router if needed.  The killed client is also removed from all channels. */
154 void silc_server_kill_client(SilcServer server,
155                              SilcClientEntry remote_client,
156                              const char *comment,
157                              void *killer_id,
158                              SilcIdType killer_id_type);
159
160 /* This function checks whether the `client' nickname is being watched
161    by someone, and notifies the watcher of the notify change of notify
162    type indicated by `notify'. */
163 SilcBool silc_server_check_watcher_list(SilcServer server,
164                                     SilcClientEntry client,
165                                     const char *new_nick,
166                                     SilcNotifyType notify);
167
168 /* Remove the `client' from watcher list. After calling this the `client'
169    is not watching any nicknames. */
170 SilcBool silc_server_del_from_watcher_list(SilcServer server,
171                                        SilcClientEntry client);
172
173 /* Force the client indicated by `chl' to change the channel user mode
174    on channel indicated by `channel' to `forced_mode'. */
175 SilcBool silc_server_force_cumode_change(SilcServer server,
176                                      SilcPacketStream sock,
177                                      SilcChannelEntry channel,
178                                      SilcChannelClientEntry chl,
179                                      SilcUInt32 forced_mode);
180
181 /* Find active socket connection by the IP address and port indicated by
182    `ip' and `port', and socket connection type of `type'. */
183 SilcPacketStream
184 silc_server_find_socket_by_host(SilcServer server,
185                                 SilcConnectionType type,
186                                 const char *ip, SilcUInt16 port);
187
188 /* This function can be used to match the invite and ban lists. */
189 SilcBool silc_server_inviteban_match(SilcServer server, SilcHashTable list,
190                                  SilcUInt8 type, void *check);
191
192 /* Process invite or ban information */
193 SilcBool silc_server_inviteban_process(SilcServer server, SilcHashTable list,
194                                    SilcUInt8 action, SilcArgumentPayload args);
195
196 /* Destructor for invite or ban list entrys */
197 void silc_server_inviteban_destruct(void *key, void *context,
198                                     void *user_context);
199
200 /* Creates connections according to configuration. */
201 void silc_server_create_connections(SilcServer server);
202
203
204 /* Processes a channel public key, either adds or removes it. */
205 SilcStatus
206 silc_server_process_channel_pk(SilcServer server,
207                                SilcChannelEntry channel,
208                                SilcUInt32 type, const unsigned char *pk,
209                                SilcUInt32 pk_len);
210
211 /* Returns the channel public keys as Argument List payload. */
212 SilcBuffer silc_server_get_channel_pk_list(SilcServer server,
213                                            SilcChannelEntry channel,
214                                            SilcBool announce,
215                                            SilcBool delete);
216
217 /* Sets the channel public keys into channel from the list of public keys. */
218 SilcStatus silc_server_set_channel_pk_list(SilcServer server,
219                                            SilcPacketStream sender,
220                                            SilcChannelEntry channel,
221                                            const unsigned char *pklist,
222                                            SilcUInt32 pklist_len);
223
224 /* Verifies the Authentication Payload `auth' with one of the public keys
225    on the `channel' public key list. */
226 SilcBool silc_server_verify_channel_auth(SilcServer server,
227                                      SilcChannelEntry channel,
228                                      SilcClientID *client_id,
229                                      const unsigned char *auth,
230                                      SilcUInt32 auth_len);
231
232 #endif /* SERVER_UTIL_H */