Added remote version control support to server.
[silc.git] / apps / silcd / serverconfig.h
1 /*
2
3   serverconfig.h
4
5   Author: Johnny Mnemonic <johnny@themnemonic.org>
6
7   Copyright (C) 1997 - 2002 Johnny Mnemonic
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 SERVERCONFIG_H
22 #define SERVERCONFIG_H
23
24 typedef struct SilcServerConfigCipherStruct {
25   char *name;
26   char *module;
27   SilcUInt32 key_length;
28   SilcUInt32 block_length;
29   struct SilcServerConfigCipherStruct *next;
30 } SilcServerConfigCipher;
31
32 typedef struct SilcServerConfigHashStruct {
33   char *name;
34   char *module;
35   SilcUInt32 block_length;
36   SilcUInt32 digest_length;
37   struct SilcServerConfigHashStruct *next;
38 } SilcServerConfigHash;
39
40 typedef struct SilcServerConfigHmacStruct {
41   char *name;
42   char *hash;
43   SilcUInt32 mac_length;
44   struct SilcServerConfigHmacStruct *next;
45 } SilcServerConfigHmac;
46
47 typedef struct SilcServerConfigPkcsStruct {
48   char *name;
49   struct SilcServerConfigPkcsStruct *next;
50 } SilcServerConfigPkcs;
51
52 typedef struct SilcServerConfigServerInfoStruct {
53   char *server_name;
54   char *server_ip;
55   SilcUInt16 port;
56   char *server_type;    /* E.g. "Test Server" */
57   char *location;       /* geographic location */
58   char *admin;          /* admin full name */
59   char *email;          /* admin's email address */
60   char *user;           /* userid the server should be runned at */
61   char *group;          /* ditto, but about groupid */
62   SilcPublicKey public_key;
63   SilcPrivateKey private_key;
64   char *motd_file;      /* path to text motd file (reading only) */
65   char *pid_file;       /* path to the pid file (for reading and writing) */
66 } SilcServerConfigServerInfo;
67
68 typedef struct SilcServerConfigLoggingStruct {
69   char *file;
70   SilcUInt32 maxsize;
71 } SilcServerConfigLogging;
72
73 /* Connection parameters */
74 typedef struct SilcServerConfigConnParams {
75   char *name;
76   SilcUInt32 connections_max;
77   SilcUInt32 connections_max_per_host;
78   SilcUInt32 keepalive_secs;
79   SilcUInt32 reconnect_count;
80   SilcUInt32 reconnect_interval;
81   SilcUInt32 reconnect_interval_max;
82   bool reconnect_keep_trying;
83   SilcUInt32 key_exchange_rekey;
84   bool key_exchange_pfs;
85   char *version_protocol;
86   char *version_software;
87   char *version_software_vendor;
88   struct SilcServerConfigConnParams *next;
89 } SilcServerConfigConnParams;
90
91 /* Holds all client authentication data from config file */
92 typedef struct SilcServerConfigClientStruct {
93   char *host;
94   unsigned char *passphrase;
95   SilcUInt32 passphrase_len;
96   SilcHashTable publickeys;
97   SilcServerConfigConnParams *param;
98   struct SilcServerConfigClientStruct *next;
99 } SilcServerConfigClient;
100
101 /* Holds all server's administrators authentication data from config file */
102 typedef struct SilcServerConfigAdminStruct {
103   char *host;
104   char *user;
105   char *nick;
106   unsigned char *passphrase;
107   SilcUInt32 passphrase_len;
108   SilcHashTable publickeys;
109   struct SilcServerConfigAdminStruct *next;
110 } SilcServerConfigAdmin;
111
112 /* Holds all configured denied connections from config file */
113 typedef struct SilcServerConfigDenyStruct {
114   char *host;
115   char *reason;
116   struct SilcServerConfigDenyStruct *next;
117 } SilcServerConfigDeny;
118
119 /* Holds all configured server connections from config file */
120 typedef struct SilcServerConfigServerStruct {
121   char *host;
122   unsigned char *passphrase;
123   SilcUInt32 passphrase_len;
124   SilcHashTable publickeys;
125   char *version;
126   SilcServerConfigConnParams *param;
127   bool backup_router;
128   struct SilcServerConfigServerStruct *next;
129 } SilcServerConfigServer;
130
131 /* Holds all configured router connections from config file */
132 typedef struct SilcServerConfigRouterStruct {
133   char *host;
134   unsigned char *passphrase;
135   SilcUInt32 passphrase_len;
136   SilcHashTable publickeys;
137   SilcUInt16 port;
138   char *version;
139   SilcServerConfigConnParams *param;
140   bool initiator;
141   bool backup_router;
142   char *backup_replace_ip;
143   SilcUInt16 backup_replace_port;
144   bool backup_local;
145   struct SilcServerConfigRouterStruct *next;
146 } SilcServerConfigRouter;
147
148 /* define the SilcServerConfig object */
149 typedef struct {
150   void *tmp;
151
152   /* The General section */
153   char *module_path;
154   bool prefer_passphrase_auth;
155   bool require_reverse_lookup;
156   SilcUInt32 channel_rekey_secs;
157   SilcUInt32 key_exchange_timeout;
158   SilcUInt32 conn_auth_timeout;
159   SilcServerConfigConnParams param;
160
161   /* Other configuration sections */
162   SilcServerConfigCipher *cipher;
163   SilcServerConfigHash *hash;
164   SilcServerConfigHmac *hmac;
165   SilcServerConfigPkcs *pkcs;
166   SilcServerConfigLogging *logging_info;
167   SilcServerConfigLogging *logging_warnings;
168   SilcServerConfigLogging *logging_errors;
169   SilcServerConfigLogging *logging_fatals;
170   SilcServerConfigServerInfo *server_info;
171   SilcServerConfigConnParams *conn_params;
172   SilcServerConfigClient *clients;
173   SilcServerConfigAdmin *admins;
174   SilcServerConfigDeny *denied;
175   SilcServerConfigServer *servers;
176   SilcServerConfigRouter *routers;
177 } *SilcServerConfig;
178
179 /* Prototypes */
180
181 /* Basic config operations */
182 SilcServerConfig silc_server_config_alloc(char *filename);
183 void silc_server_config_destroy(SilcServerConfig config);
184
185 /* Algorithm registering and reset functions */
186 bool silc_server_config_register_ciphers(SilcServer server);
187 bool silc_server_config_register_hashfuncs(SilcServer server);
188 bool silc_server_config_register_hmacs(SilcServer server);
189 bool silc_server_config_register_pkcs(SilcServer server);
190 void silc_server_config_setlogfiles(SilcServer server);
191
192 /* Run-time config access functions */
193 SilcServerConfigClient *
194 silc_server_config_find_client(SilcServer server, char *host);
195 SilcServerConfigAdmin *
196 silc_server_config_find_admin(SilcServer server, char *host, char *user, 
197                               char *nick);
198 SilcServerConfigDeny *
199 silc_server_config_find_denied(SilcServer server, char *host);
200 SilcServerConfigServer *
201 silc_server_config_find_server_conn(SilcServer server, char *host);
202 SilcServerConfigRouter *
203 silc_server_config_find_router_conn(SilcServer server, char *host, int port);
204 bool silc_server_config_is_primary_route(SilcServer server);
205 SilcServerConfigRouter *
206 silc_server_config_get_primary_router(SilcServer server);
207 bool silc_server_config_set_defaults(SilcServer server);
208
209 #endif  /* !SERVERCONFIG_H */