updates.
[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 - 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; 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 is used to remove all client entries by the server `entry'.
24    This is called when the connection is lost to the server. In this case
25    we must invalidate all the client entries owned by the server `entry'. 
26    If the `server_signoff' is TRUE then the SERVER_SIGNOFF notify is
27    distributed to our local clients. */
28 bool silc_server_remove_clients_by_server(SilcServer server, 
29                                           SilcServerEntry entry,
30                                           bool 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. This function also removes the clients that are
38    *really* originated from `from' if `remove_from' is TRUE. These are
39    clients that the `from' owns, and not just clients that are behind
40    the `from'. */
41 void silc_server_update_clients_by_server(SilcServer server, 
42                                           SilcServerEntry from,
43                                           SilcServerEntry to,
44                                           bool resolve_real_server,
45                                           bool remove_from);
46
47 /* Updates servers that are from `from' to be originated from `to'.  This
48    will also update the server's connection to `to's connection. */
49 void silc_server_update_servers_by_server(SilcServer server, 
50                                           SilcServerEntry from,
51                                           SilcServerEntry to);
52
53 /* Removes channels that are from `from. */
54 void silc_server_remove_channels_by_server(SilcServer server, 
55                                            SilcServerEntry from);
56
57 /* Updates channels that are from `from' to be originated from `to'.  */
58 void silc_server_update_channels_by_server(SilcServer server, 
59                                            SilcServerEntry from,
60                                            SilcServerEntry to);
61
62 /* Checks whether given channel has global users.  If it does this returns
63    TRUE and FALSE if there is only locally connected clients on the channel. */
64 bool silc_server_channel_has_global(SilcChannelEntry channel);
65
66 /* Checks whether given channel has locally connected users.  If it does this
67    returns TRUE and FALSE if there is not one locally connected client. */
68 bool silc_server_channel_has_local(SilcChannelEntry channel);
69
70 /* Returns TRUE if the given client is on the channel.  FALSE if not. 
71    This works because we assure that the user list on the channel is
72    always in up to date thus we can only check the channel list from 
73    `client' which is faster than checking the user list from `channel'. */
74 bool silc_server_client_on_channel(SilcClientEntry client,
75                                    SilcChannelEntry channel,
76                                    SilcChannelClientEntry *chl);
77
78 /* Checks string for bad characters and returns TRUE if they are found. */
79 bool silc_server_name_bad_chars(const char *name, SilcUInt32 name_len);
80
81 /* Modifies the `nick' if it includes bad characters and returns new
82    allocated nickname that does not include bad characters. */
83 char *silc_server_name_modify_bad(const char *name, SilcUInt32 name_len);
84
85 /* Find number of sockets by IP address indicated by `ip'. Returns 0 if
86    socket connections with the IP address does not exist. */
87 SilcUInt32 silc_server_num_sockets_by_ip(SilcServer server, const char *ip,
88                                          SilcSocketType type);
89
90 /* Find number of sockets by IP address indicated by remote host, indicatd
91    by `ip' or `hostname', `port', and `type'.  Returns 0 if socket connections
92    does not exist. If `ip' is provided then `hostname' is ignored. */
93 SilcUInt32 silc_server_num_sockets_by_remote(SilcServer server, 
94                                              const char *ip,
95                                              const char *hostname,
96                                              SilcUInt16 port,
97                                              SilcSocketType type);
98
99 /* Finds locally cached public key by the public key received in the SKE. 
100    If we have it locally cached then we trust it and will use it in the
101    authentication protocol.  Returns the locally cached public key or NULL
102    if we do not find the public key.  */
103 SilcPublicKey silc_server_find_public_key(SilcServer server, 
104                                           SilcHashTable local_public_keys,
105                                           SilcPublicKey remote_public_key);
106
107 /* This returns the first public key from the table of public keys.  This
108    is used only in cases where single public key exists in the table and
109    we want to get a pointer to it.  For public key tables that has multiple
110    keys in it the silc_server_find_public_key must be used. */
111 SilcPublicKey silc_server_get_public_key(SilcServer server,
112                                          SilcHashTable local_public_keys);
113
114 /* Check whether the connection `sock' is allowed to connect to us.  This
115    checks for example whether there is too much connections for this host,
116    and required version for the host etc. */
117 bool silc_server_connection_allowed(SilcServer server, 
118                                     SilcSocketConnection sock,
119                                     SilcSocketType type,
120                                     SilcServerConfigConnParams *global,
121                                     SilcServerConfigConnParams *params,
122                                     SilcSKE ske);
123
124 /* Checks that client has rights to add or remove channel modes. If any
125    of the checks fails FALSE is returned. */
126 bool silc_server_check_cmode_rights(SilcServer server,
127                                     SilcChannelEntry channel,
128                                     SilcChannelClientEntry client,
129                                     SilcUInt32 mode);
130
131 /* Check that the client has rights to change its user mode.  Returns
132    FALSE if setting some mode is not allowed. */
133 bool silc_server_check_umode_rights(SilcServer server,
134                                     SilcClientEntry client,
135                                     SilcUInt32 mode);
136
137 /* This function is used to send the notify packets and motd to the
138    incoming client connection. */
139 void silc_server_send_connect_notifys(SilcServer server,
140                                       SilcSocketConnection sock,
141                                       SilcClientEntry client);
142
143 /* Kill the client indicated by `remote_client' sending KILLED notify
144    to the client, to all channels client has joined and to primary
145    router if needed.  The killed client is also removed from all channels. */
146 void silc_server_kill_client(SilcServer server,
147                              SilcClientEntry remote_client,
148                              const char *comment,
149                              void *killer_id,
150                              SilcIdType killer_id_type);
151
152 #endif /* SERVER_UTIL_H */