updates.
[silc.git] / apps / silcd / serverconfig.c
index e51039d619484e970556ec1c4765f1d4c85226fe..6ee3ebc6f9f32c94f4ebd49ab7eb4736f1e5cc2d 100644 (file)
@@ -4,7 +4,7 @@
 
   Author: Johnny Mnemonic <johnny@themnemonic.org>
 
-  Copyright (C) 1997 - 2002 Pekka Riikonen
+  Copyright (C) 1997 - 2002 Johnny Mnemonic
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -22,9 +22,6 @@
 #include "serverincludes.h"
 #include "server_internal.h"
 
-#define SILC_CONFIG_SERVER_AUTH_METH_PASSWD "passwd"
-#define SILC_CONFIG_SERVER_AUTH_METH_PUBKEY "pubkey"
-
 #if 0
 #define SERVER_CONFIG_DEBUG(fmt) SILC_LOG_DEBUG(fmt)
 #else
@@ -39,9 +36,9 @@
 
 /* append the tmp field to the specified list */
 #define SILC_SERVER_CONFIG_LIST_APPENDTMP(__list__)                    \
-  if (!__list__)                                                       \
+  if (!__list__) {                                                     \
     __list__ = tmp;                                                    \
-  else {                                                               \
+  } else {                                                             \
     for (findtmp = __list__; findtmp->next; findtmp = findtmp->next);  \
     findtmp->next = tmp;                                               \
   }
     __type__ *di = (__type__ *) tmp;                                   \
     tmp = (void *) di->next;
 
-/* free an authdata according to its auth method */
-static void my_free_authdata(SilcAuthMethod auth_meth, void *auth_data)
+/* Set EDOUBLE error value and bail out if necessary */
+#define CONFIG_IS_DOUBLE(__x__)                                                \
+  if ((__x__)) {                                                       \
+    got_errno = SILC_CONFIG_EDOUBLE;                                   \
+    goto got_err;                                                      \
+  }
+
+/* Free the authentication fields in the specified struct
+ * Expands to two instructions */
+#define CONFIG_FREE_AUTH(__section__)                                  \
+  silc_free(__section__->passphrase);                                  \
+  silc_pkcs_public_key_free(__section__->publickey)
+
+/* Find connection parameters by the parameter block name. */
+static SilcServerConfigSectionConnectionParam *
+my_find_param(SilcServerConfig config, const char *name, uint32 line)
 {
-  if (auth_meth == SILC_AUTH_PASSWORD) {
-    silc_free(auth_data);
-  } else if (auth_meth == SILC_AUTH_PUBLIC_KEY) {
-    silc_pkcs_public_key_free((SilcPublicKey) auth_data);
+  SilcServerConfigSectionConnectionParam *param;
+
+  for (param = config->conn_params; param; param = param->next) {
+    if (!strcasecmp(param->name, name))
+      return param;
   }
+
+  fprintf(stderr, "\nError while parsing config file at line %lu: "
+         "Cannot find Param \"%s\".\n", line, name);
+
+  return NULL;
 }
 
 /* parse an authdata according to its auth method */
@@ -69,8 +86,10 @@ static bool my_parse_authdata(SilcAuthMethod auth_meth, char *p, uint32 line,
 {
   if (auth_meth == SILC_AUTH_PASSWORD) {
     /* p is a plain text password */
-    *auth_data = (void *) strdup(p);
-    *auth_data_len = (uint32) strlen(p);
+    if (auth_data)
+      *auth_data = (void *) strdup(p);
+    if (auth_data_len)
+      *auth_data_len = (uint32) strlen(p);
   } else if (auth_meth == SILC_AUTH_PUBLIC_KEY) {
     /* p is a public key */
     SilcPublicKey public_key;
@@ -81,11 +100,13 @@ static bool my_parse_authdata(SilcAuthMethod auth_meth, char *p, uint32 line,
                "Could not load public key file!\n", line);
        return FALSE;
       }
-    *auth_data = (void *) public_key;
-    *auth_data_len = 0;
+    if (auth_data)
+      *auth_data = (void *) public_key;
+    if (auth_data_len)
+      *auth_data_len = 0;
   } else {
-    fprintf(stderr, "\nError while parsing config file at line %lu: Specify "
-               "the AuthMethod before specifying the AuthData.\n", line);
+    fprintf(stderr, "\nError while parsing config file at line %lu: "
+           "Unknown authentication method.\n", line);
     return FALSE;
   }
   return TRUE;
@@ -96,22 +117,48 @@ static bool my_parse_authdata(SilcAuthMethod auth_meth, char *p, uint32 line,
 SILC_CONFIG_CALLBACK(fetch_generic)
 {
   SilcServerConfig config = (SilcServerConfig) context;
+  int got_errno = 0;
 
-  if (!strcmp(name, "modulepath")) {
-    if (config->module_path) return SILC_CONFIG_EDOUBLE;
-    /* dup it only if non-empty, otherwise point it to NULL */
+  if (!strcmp(name, "module_path")) {
+    CONFIG_IS_DOUBLE(config->module_path);
     config->module_path = (*(char *)val ? strdup((char *) val) : NULL);
   }
+  else if (!strcmp(name, "prefer_passphrase_auth")) {
+    config->prefer_passphrase_auth = *(bool *)val;
+  }
+  else if (!strcmp(name, "require_reverse_lookup")) {
+    config->require_reverse_lookup = *(bool *)val;
+  }
+  else if (!strcmp(name, "keepalive_secs")) {
+    config->param.keepalive_secs = (uint32) *(int *)val;
+  }
+  else if (!strcmp(name, "reconnect_count")) {
+    config->param.reconnect_count = (uint32) *(int *)val;
+  }
+  else if (!strcmp(name, "reconnect_interval")) {
+    config->param.reconnect_interval = (uint32) *(int *)val;
+  }
+  else if (!strcmp(name, "reconnect_interval_max")) {
+    config->param.reconnect_interval_max = (uint32) *(int *)val;
+  }
+  else if (!strcmp(name, "reconnect_keep_trying")) {
+    config->param.reconnect_keep_trying = *(bool *)val;
+  }
   else
     return SILC_CONFIG_EINTERNAL;
+
   return SILC_CONFIG_OK;
+
+ got_err:
+  return got_errno;
 }
 
 SILC_CONFIG_CALLBACK(fetch_cipher)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionCipher);
 
-  SERVER_CONFIG_DEBUG(("Received CIPHER type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received CIPHER type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
@@ -133,18 +180,19 @@ SILC_CONFIG_CALLBACK(fetch_cipher)
 
   /* Identify and save this value */
   if (!strcmp(name, "name")) {
-    if (tmp->name) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->name);
     tmp->name = strdup((char *) val);
   }
-  else if (!strcmp(name, "module")) { /* can be empty */
-    if (tmp->module) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
-    /* dup it only if non-empty, otherwise point it to NULL */
+  else if (!strcmp(name, "module")) {
+    CONFIG_IS_DOUBLE(tmp->module);
     tmp->module = (*(char *)val ? strdup((char *) val) : NULL);
   }
-  else if (!strcmp(name, "key_length"))
+  else if (!strcmp(name, "keylength")) {
     tmp->key_length = *(uint32 *)val;
-  else if (!strcmp(name, "block_length"))
+  }
+  else if (!strcmp(name, "blocklength")) {
     tmp->block_length = *(uint32 *)val;
+  }
   else
     return SILC_CONFIG_EINTERNAL;
   return SILC_CONFIG_OK;
@@ -161,7 +209,8 @@ SILC_CONFIG_CALLBACK(fetch_hash)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionHash);
 
-  SERVER_CONFIG_DEBUG(("Received HASH type=%d name=%s (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received HASH type=%d name=%s (val=%x)",
+                      type, name, context));
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
@@ -175,6 +224,7 @@ SILC_CONFIG_CALLBACK(fetch_hash)
     config->tmp = NULL;
     return SILC_CONFIG_OK;
   }
+
   /* if there isn't a temporary struct alloc one */
   if (!tmp) {
     config->tmp = silc_calloc(1, sizeof(*findtmp));
@@ -183,18 +233,19 @@ SILC_CONFIG_CALLBACK(fetch_hash)
 
   /* Identify and save this value */
   if (!strcmp(name, "name")) {
-    if (tmp->name) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->name);
     tmp->name = strdup((char *) val);
   }
-  else if (!strcmp(name, "module")) { /* can be empty */
-    if (tmp->module) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
-    /* dup it only if non-empty, otherwise point it to NULL */
+  else if (!strcmp(name, "module")) {
+    CONFIG_IS_DOUBLE(tmp->module);
     tmp->module = (*(char *)val ? strdup((char *) val) : NULL);
   }
-  else if (!strcmp(name, "block_length"))
+  else if (!strcmp(name, "blocklength")) {
     tmp->block_length = *(int *)val;
-  else if (!strcmp(name, "digest_length"))
+  }
+  else if (!strcmp(name, "digestlength")) {
     tmp->digest_length = *(int *)val;
+  }
   else
     return SILC_CONFIG_EINTERNAL;
   return SILC_CONFIG_OK;
@@ -211,7 +262,8 @@ SILC_CONFIG_CALLBACK(fetch_hmac)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionHmac);
 
-  SERVER_CONFIG_DEBUG(("Received HMAC type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received HMAC type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
@@ -233,15 +285,16 @@ SILC_CONFIG_CALLBACK(fetch_hmac)
 
   /* Identify and save this value */
   if (!strcmp(name, "name")) {
-    if (tmp->name) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->name);
     tmp->name = strdup((char *) val);
   }
   else if (!strcmp(name, "hash")) {
-    if (tmp->hash) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->hash);
     tmp->hash = strdup((char *) val);
   }
-  else if (!strcmp(name, "mac_length"))
+  else if (!strcmp(name, "maclength")) {
     tmp->mac_length = *(int *)val;
+  }
   else
     return SILC_CONFIG_EINTERNAL;
   return SILC_CONFIG_OK;
@@ -258,7 +311,8 @@ SILC_CONFIG_CALLBACK(fetch_pkcs)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionPkcs);
 
-  SERVER_CONFIG_DEBUG(("Received PKCS type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received PKCS type=%d name=\"%s\" (val=%x)", 
+                      type, name, context));
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
@@ -280,7 +334,7 @@ SILC_CONFIG_CALLBACK(fetch_pkcs)
 
   /* Identify and save this value */
   if (!strcmp(name, "name")) {
-    if (tmp->name) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->name);
     tmp->name = strdup((char *) val);
   }
   else
@@ -298,23 +352,23 @@ SILC_CONFIG_CALLBACK(fetch_serverinfo)
 {
   SilcServerConfig config = (SilcServerConfig) context;
   SilcServerConfigSectionServerInfo *server_info = config->server_info;
+  int got_errno = 0;
 
   /* if there isn't the struct alloc it */
-  if (!server_info) {
+  if (!server_info)
     config->server_info = server_info = (SilcServerConfigSectionServerInfo *)
                silc_calloc(1, sizeof(*server_info));
-  }
 
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check for mandatory inputs */
     return SILC_CONFIG_OK;
   }
   if (!strcmp(name, "hostname")) {
-    if (server_info->server_name) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->server_name);
     server_info->server_name = strdup((char *) val);
   }
   else if (!strcmp(name, "ip")) {
-    if (server_info->server_ip) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->server_ip);
     server_info->server_ip = strdup((char *) val);
   }
   else if (!strcmp(name, "port")) {
@@ -326,35 +380,35 @@ SILC_CONFIG_CALLBACK(fetch_serverinfo)
     server_info->port = (uint16) port;
   }
   else if (!strcmp(name, "servertype")) {
-    if (server_info->server_type) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->server_type);
     server_info->server_type = strdup((char *) val);
   }
   else if (!strcmp(name, "admin")) {
-    if (server_info->admin) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->admin);
     server_info->admin = strdup((char *) val);
   }
-  else if (!strcmp(name, "email")) {
-    if (server_info->email) return SILC_CONFIG_EDOUBLE;
+  else if (!strcmp(name, "adminemail")) {
+    CONFIG_IS_DOUBLE(server_info->email);
     server_info->email = strdup((char *) val);
   }
   else if (!strcmp(name, "location")) {
-    if (server_info->location) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->location);
     server_info->location = strdup((char *) val);
   }
   else if (!strcmp(name, "user")) {
-    if (server_info->user) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->user);
     server_info->user = strdup((char *) val);
   }
   else if (!strcmp(name, "group")) {
-    if (server_info->group) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->group);
     server_info->group = strdup((char *) val);
   }
   else if (!strcmp(name, "motdfile")) {
-    if (server_info->motd_file) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->motd_file);
     server_info->motd_file = strdup((char *) val);
   }
   else if (!strcmp(name, "pidfile")) {
-    if (server_info->pid_file) return SILC_CONFIG_EDOUBLE;
+    CONFIG_IS_DOUBLE(server_info->pid_file);
     server_info->pid_file = strdup((char *) val);
   }
   else if (!strcmp(name, "publickey")) {
@@ -386,6 +440,9 @@ SILC_CONFIG_CALLBACK(fetch_serverinfo)
   else
     return SILC_CONFIG_EINTERNAL;
   return SILC_CONFIG_OK;
+
+ got_err:
+  return got_errno;
 }
 
 SILC_CONFIG_CALLBACK(fetch_logging)
@@ -449,63 +506,115 @@ SILC_CONFIG_CALLBACK(fetch_logging)
   return got_errno;
 }
 
-SILC_CONFIG_CALLBACK(fetch_client)
+SILC_CONFIG_CALLBACK(fetch_connparam)
 {
-  SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionClient);
+  SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionConnectionParam);
+
+  SERVER_CONFIG_DEBUG(("Received CONNPARAM type=%d name=\"%s\" (val=%x)", 
+                      type, name, context));
 
-  SERVER_CONFIG_DEBUG(("Received CLIENT type=%d name=\"%s\" (val=%x)", type, name, context));
   if (type == SILC_CONFIG_ARG_BLOCK) {
-    if (!tmp) /* empty sub-block? */
+    if (!tmp)
       return SILC_CONFIG_OK;
-    if (tmp->auth_meth && !tmp->auth_data) {
-      fprintf(stderr, "\nError: line %lu: If you specify \"AuthMethod\" field "
-               "then you must also specify the \"AuthData\" field.\n", line);
-      got_errno = SILC_CONFIG_ESILENT;
-      goto got_err;
-    }
-    SILC_SERVER_CONFIG_LIST_APPENDTMP(config->clients);
+
+    SILC_SERVER_CONFIG_LIST_APPENDTMP(config->conn_params);
     config->tmp = NULL;
     return SILC_CONFIG_OK;
   }
+
   /* if there isn't a temporary struct alloc one */
+  if (!tmp) {
+    config->tmp = silc_calloc(1, sizeof(*findtmp));
+    tmp = (SilcServerConfigSectionConnectionParam *) config->tmp;
+  }
+
+  if (!strcmp(name, "name")) {
+    CONFIG_IS_DOUBLE(tmp->name);
+    tmp->name = (*(char *)val ? strdup((char *) val) : NULL);
+  }
+  else if (!strcmp(name, "keepalive_secs")) {
+    tmp->keepalive_secs = *(uint32 *)val;
+  }
+  else if (!strcmp(name, "reconnect_count")) {
+    tmp->reconnect_count = *(uint32 *)val;
+  }
+  else if (!strcmp(name, "reconnect_interval")) {
+    tmp->reconnect_interval = *(uint32 *)val;
+  }
+  else if (!strcmp(name, "reconnect_interval_max")) {
+    tmp->reconnect_interval_max = *(uint32 *)val;
+  }
+  else if (!strcmp(name, "reconnect_keep_trying")) {
+    tmp->reconnect_keep_trying = *(bool *)val;
+  }
+  else
+    return SILC_CONFIG_EINTERNAL;
+
+  return SILC_CONFIG_OK;
+
+ got_err:
+  silc_free(tmp->name);
+  silc_free(tmp);
+  config->tmp = NULL;
+  return got_errno;
+}
+
+SILC_CONFIG_CALLBACK(fetch_client)
+{
+  SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionClient);
+
+  SERVER_CONFIG_DEBUG(("Received CLIENT type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
+
+  /* alloc tmp before block checking (empty sub-blocks are welcome here) */
   if (!tmp) {
     config->tmp = silc_calloc(1, sizeof(*findtmp));
     tmp = (SilcServerConfigSectionClient *) config->tmp;
   }
 
+  if (type == SILC_CONFIG_ARG_BLOCK) {
+    /* closing the block */
+    SILC_SERVER_CONFIG_LIST_APPENDTMP(config->clients);
+    config->tmp = NULL;
+    return SILC_CONFIG_OK;
+  }
+
   /* Identify and save this value */
-  if (!strcmp(name, "host")) { /* any host (*) accepted */
-    if (tmp->host) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+  if (!strcmp(name, "host")) {
+    CONFIG_IS_DOUBLE(tmp->host);
     tmp->host = (*(char *)val ? strdup((char *) val) : NULL);
   }
-  /* get authentication method */
-  else if (!strcmp(name, "authmethod")) {
-    if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PASSWD))
-      tmp->auth_meth = SILC_AUTH_PASSWORD;
-    else if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PUBKEY))
-      tmp->auth_meth = SILC_AUTH_PUBLIC_KEY;
-    else {
-      got_errno = SILC_CONFIG_EINVALIDTEXT; goto got_err;
+  else if (!strcmp(name, "passphrase")) {
+    if (!my_parse_authdata(SILC_AUTH_PASSWORD, (char *) val, line,
+                          (void **)&tmp->passphrase,
+                          &tmp->passphrase_len)) {
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
     }
   }
-  else if (!strcmp(name, "authdata")) {
-    if (!my_parse_authdata(tmp->auth_meth, (char *) val, line,
-                          &tmp->auth_data, &tmp->auth_data_len)) {
+  else if (!strcmp(name, "publickey")) {
+    if (!my_parse_authdata(SILC_AUTH_PUBLIC_KEY, (char *) val, line,
+                          &tmp->publickey, NULL)) {
       got_errno = SILC_CONFIG_ESILENT;
-      goto got_err; /* error outputted in my_parse_authdata */
+      goto got_err;
     }
   }
   else if (!strcmp(name, "port")) {
     int port = *(int *)val;
     if ((port <= 0) || (port > 65535)) {
       fprintf(stderr, "Invalid port number!\n");
-      got_errno = SILC_CONFIG_ESILENT; goto got_err;
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
     }
     tmp->port = (uint16) port;
   }
-  /* FIXME: Improvement: use a direct class struct pointer instead of num */
-  else if (!strcmp(name, "class")) {
-    /* XXX do nothing */
+  else if (!strcmp(name, "param")) {
+    CONFIG_IS_DOUBLE(tmp->param);
+    tmp->param = my_find_param(config, (char *) val, line);
+    if (!tmp->param) { /* error already output */
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
+    }
   }
   else
     return SILC_CONFIG_EINTERNAL;
@@ -513,8 +622,9 @@ SILC_CONFIG_CALLBACK(fetch_client)
 
  got_err:
   silc_free(tmp->host);
-  my_free_authdata(tmp->auth_meth, tmp->auth_data);
+  CONFIG_FREE_AUTH(tmp);
   silc_free(tmp);
+  config->tmp = NULL;
   return got_errno;
 }
 
@@ -522,18 +632,19 @@ SILC_CONFIG_CALLBACK(fetch_admin)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionAdmin);
 
-  SERVER_CONFIG_DEBUG(("Received CLIENT type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received CLIENT type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
+
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
       return SILC_CONFIG_OK;
-    if (!tmp->auth_meth) {
-      got_errno = SILC_CONFIG_EMISSFIELDS; goto got_err;
-    }
+
     SILC_SERVER_CONFIG_LIST_APPENDTMP(config->admins);
     config->tmp = NULL;
     return SILC_CONFIG_OK;
   }
+
   /* if there isn't a temporary struct alloc one */
   if (!tmp) {
     config->tmp = silc_calloc(1, sizeof(*findtmp));
@@ -541,33 +652,31 @@ SILC_CONFIG_CALLBACK(fetch_admin)
   }
 
   /* Identify and save this value */
-  if (!strcmp(name, "host")) { /* any host (*) accepted */
-    if (tmp->host) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+  if (!strcmp(name, "host")) {
+    CONFIG_IS_DOUBLE(tmp->host);
     tmp->host = (*(char *)val ? strdup((char *) val) : NULL);
   }
   else if (!strcmp(name, "user")) {
-    if (tmp->user) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->user);
     tmp->user = (*(char *)val ? strdup((char *) val) : NULL);
   }
   else if (!strcmp(name, "nick")) {
-    if (tmp->nick) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->nick);
     tmp->nick = (*(char *)val ? strdup((char *) val) : NULL);
   }
-  /* get authentication method */
-  else if (!strcmp(name, "authmethod")) {
-    if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PASSWD))
-      tmp->auth_meth = SILC_AUTH_PASSWORD;
-    else if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PUBKEY))
-      tmp->auth_meth = SILC_AUTH_PUBLIC_KEY;
-    else {
-      got_errno = SILC_CONFIG_EINVALIDTEXT; goto got_err;
+  else if (!strcmp(name, "passphrase")) {
+    if (!my_parse_authdata(SILC_AUTH_PASSWORD, (char *) val, line,
+                          (void **)&tmp->passphrase,
+                          &tmp->passphrase_len)) {
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
     }
   }
-  else if (!strcmp(name, "authdata")) {
-    if (!my_parse_authdata(tmp->auth_meth, (char *) val, line,
-                          &tmp->auth_data, &tmp->auth_data_len)) {
+  else if (!strcmp(name, "publickey")) {
+    if (!my_parse_authdata(SILC_AUTH_PUBLIC_KEY, (char *) val, line,
+                          &tmp->publickey, NULL)) {
       got_errno = SILC_CONFIG_ESILENT;
-      goto got_err; /* error outputted in my_parse_authdata */
+      goto got_err;
     }
   }
   else
@@ -578,8 +687,9 @@ SILC_CONFIG_CALLBACK(fetch_admin)
   silc_free(tmp->host);
   silc_free(tmp->user);
   silc_free(tmp->nick);
-  my_free_authdata(tmp->auth_meth, tmp->auth_data);
+  CONFIG_FREE_AUTH(tmp);
   silc_free(tmp);
+  config->tmp = NULL;
   return got_errno;
 }
 
@@ -587,7 +697,8 @@ SILC_CONFIG_CALLBACK(fetch_deny)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionDeny);
 
-  SERVER_CONFIG_DEBUG(("Received DENY type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received DENY type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
@@ -607,8 +718,8 @@ SILC_CONFIG_CALLBACK(fetch_deny)
   }
 
   /* Identify and save this value */
-  if (!strcmp(name, "host")) { /* any host (*) accepted */
-    if (tmp->host) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+  if (!strcmp(name, "host")) {
+    CONFIG_IS_DOUBLE(tmp->host);
     tmp->host = (*(char *)val ? strdup((char *) val) : strdup("*"));
   }
   else if (!strcmp(name, "port")) {
@@ -620,7 +731,7 @@ SILC_CONFIG_CALLBACK(fetch_deny)
     tmp->port = (uint16) port;
   }
   else if (!strcmp(name, "reason")) {
-    if (tmp->reason) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->reason);
     tmp->reason = strdup((char *) val);
   }
   else
@@ -631,6 +742,7 @@ SILC_CONFIG_CALLBACK(fetch_deny)
   silc_free(tmp->host);
   silc_free(tmp->reason);
   silc_free(tmp);
+  config->tmp = NULL;
   return got_errno;
 }
 
@@ -638,20 +750,22 @@ SILC_CONFIG_CALLBACK(fetch_server)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionServer);
 
-  SERVER_CONFIG_DEBUG(("Received SERVER type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received SERVER type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
+
   if (type == SILC_CONFIG_ARG_BLOCK) {
     /* check the temporary struct's fields */
     if (!tmp) /* empty sub-block? */
       return SILC_CONFIG_OK;
-    if (!tmp->auth_meth || !tmp->version) {
-      got_errno = SILC_CONFIG_EMISSFIELDS;
-      goto got_err;
-    }
+
+    /* XXX mandatory fields for server? */
+
     /* the temporary struct is ok, append it to the list */
     SILC_SERVER_CONFIG_LIST_APPENDTMP(config->servers);
     config->tmp = NULL;
     return SILC_CONFIG_OK;
   }
+
   /* if there isn't a temporary struct alloc one */
   if (!tmp) {
     config->tmp = silc_calloc(1, sizeof(*findtmp));
@@ -659,55 +773,51 @@ SILC_CONFIG_CALLBACK(fetch_server)
   }
 
   /* Identify and save this value */
-  if (!strcmp(name, "host")) { /* any host (*) accepted */
-    if (tmp->host) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+  if (!strcmp(name, "host")) {
+    CONFIG_IS_DOUBLE(tmp->host);
     tmp->host = (*(char *)val ? strdup((char *) val) : strdup("*"));
   }
-  /* get authentication method */
-  else if (!strcmp(name, "authmethod")) {
-    if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PASSWD))
-      tmp->auth_meth = SILC_AUTH_PASSWORD;
-    else if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PUBKEY))
-      tmp->auth_meth = SILC_AUTH_PUBLIC_KEY;
-    else {
-      got_errno = SILC_CONFIG_EINVALIDTEXT; goto got_err;
-    }
-  }
-  else if (!strcmp(name, "authdata")) {
-    if (!my_parse_authdata(tmp->auth_meth, (char *) val, line,
-                          &tmp->auth_data, &tmp->auth_data_len)) {
+  else if (!strcmp(name, "passphrase")) {
+    if (!my_parse_authdata(SILC_AUTH_PASSWORD, (char *) val, line,
+                          (void **)&tmp->passphrase,
+                          &tmp->passphrase_len)) {
       got_errno = SILC_CONFIG_ESILENT;
-      goto got_err; /* error outputted in my_parse_authdata */
+      goto got_err;
     }
   }
-  else if (!strcmp(name, "port")) {
-    int port = *(int *)val;
-    if ((port <= 0) || (port > 65535)) {
-      fprintf(stderr, "Invalid port number!\n");
-      got_errno = SILC_CONFIG_ESILENT; goto got_err;
+  else if (!strcmp(name, "publickey")) {
+    if (!my_parse_authdata(SILC_AUTH_PUBLIC_KEY, (char *) val, line,
+                          &tmp->publickey, NULL)) {
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
     }
-    tmp->port = (uint16) port;
   }
   else if (!strcmp(name, "versionid")) {
-    if (tmp->version) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->version);
     tmp->version = strdup((char *) val);
   }
-  /* FIXME: Improvement: use a direct class struct pointer instead of num */
-  else if (!strcmp(name, "class")) {
-    /* XXX do nothing */
+  else if (!strcmp(name, "param")) {
+    CONFIG_IS_DOUBLE(tmp->param);
+    tmp->param = my_find_param(config, (char *) val, line);
+    if (!tmp->param) { /* error already output */
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
+    }
   }
   else if (!strcmp(name, "backup")) {
     tmp->backup_router = *(bool *)val;
   }
   else
     return SILC_CONFIG_EINTERNAL;
+
   return SILC_CONFIG_OK;
 
  got_err:
   silc_free(tmp->host);
   silc_free(tmp->version);
-  my_free_authdata(tmp->auth_meth, tmp->auth_data);
+  CONFIG_FREE_AUTH(tmp);
   silc_free(tmp);
+  config->tmp = NULL;
   return got_errno;
 }
 
@@ -715,19 +825,21 @@ SILC_CONFIG_CALLBACK(fetch_router)
 {
   SILC_SERVER_CONFIG_SECTION_INIT(SilcServerConfigSectionRouter);
 
-  SERVER_CONFIG_DEBUG(("Received ROUTER type=%d name=\"%s\" (val=%x)", type, name, context));
+  SERVER_CONFIG_DEBUG(("Received ROUTER type=%d name=\"%s\" (val=%x)",
+                      type, name, context));
+
   if (type == SILC_CONFIG_ARG_BLOCK) {
     if (!tmp) /* empty sub-block? */
       return SILC_CONFIG_OK;
-    if (!tmp->auth_meth || !tmp->version) {
-      got_errno = SILC_CONFIG_EMISSFIELDS;
-      goto got_err;
-    }
+
+    /* XXX mandatory fields for router? */
+
     /* the temporary struct is ok, append it to the list */
     SILC_SERVER_CONFIG_LIST_APPENDTMP(config->routers);
     config->tmp = NULL;
     return SILC_CONFIG_OK;
   }
+
   /* if there isn't a temporary struct alloc one */
   if (!tmp) {
     config->tmp = silc_calloc(1, sizeof(*findtmp));
@@ -736,86 +848,100 @@ SILC_CONFIG_CALLBACK(fetch_router)
 
   /* Identify and save this value */
   if (!strcmp(name, "host")) {
-    if (tmp->host) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->host);
     tmp->host = strdup((char *) val);
   }
-  else if (!strcmp(name, "authmethod")) {
-    if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PASSWD))
-      tmp->auth_meth = SILC_AUTH_PASSWORD;
-    else if (!strcmp((char *) val, SILC_CONFIG_SERVER_AUTH_METH_PUBKEY))
-      tmp->auth_meth = SILC_AUTH_PUBLIC_KEY;
-    else {
-      got_errno = SILC_CONFIG_EINVALIDTEXT; goto got_err;
-    }
-  }
-  else if (!strcmp(name, "authdata")) {
-    if (!my_parse_authdata(tmp->auth_meth, (char *) val, line,
-                          &tmp->auth_data, &tmp->auth_data_len)) {
-      got_errno = SILC_CONFIG_ESILENT;
-      goto got_err; /* error outputted in my_parse_authdata */
-    }
-  }
   else if (!strcmp(name, "port")) {
     int port = *(int *)val;
     if ((port <= 0) || (port > 65535)) {
       fprintf(stderr, "Invalid port number!\n");
-      got_errno = SILC_CONFIG_ESILENT; goto got_err;
+      return SILC_CONFIG_ESILENT;
     }
     tmp->port = (uint16) port;
   }
+  else if (!strcmp(name, "passphrase")) {
+    if (!my_parse_authdata(SILC_AUTH_PASSWORD, (char *) val, line,
+                          (void **)&tmp->passphrase,
+                          &tmp->passphrase_len)) {
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
+    }
+  }
+  else if (!strcmp(name, "publickey")) {
+    if (!my_parse_authdata(SILC_AUTH_PUBLIC_KEY, (char *) val, line,
+                          &tmp->publickey, NULL)) {
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
+    }
+  }
   else if (!strcmp(name, "versionid")) {
-    if (tmp->version) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
+    CONFIG_IS_DOUBLE(tmp->version);
     tmp->version = strdup((char *) val);
   }
-  /* FIXME: Improvement: use a direct class struct pointer instead of num */
-  else if (!strcmp(name, "class")) {
-    /* XXX do nothing */
+  else if (!strcmp(name, "param")) {
+    CONFIG_IS_DOUBLE(tmp->param);
+    tmp->param = my_find_param(config, (char *) val, line);
+    if (!tmp->param) { /* error already output */
+      got_errno = SILC_CONFIG_ESILENT;
+      goto got_err;
+    }
   }
-  else if (!strcmp(name, "initiator"))
+  else if (!strcmp(name, "initiator")) {
     tmp->initiator = *(bool *)val;
+  }
   else if (!strcmp(name, "backuphost")) {
-    if (tmp->backup_replace_ip) { got_errno = SILC_CONFIG_EDOUBLE; goto got_err; }
-    tmp->backup_replace_ip = (*(char *)val ? strdup((char *) val) : strdup("*"));
+    CONFIG_IS_DOUBLE(tmp->backup_replace_ip);
+    tmp->backup_replace_ip = (*(char *)val ? strdup((char *) val) :
+                             strdup("*"));
   }
   else
     return SILC_CONFIG_EINTERNAL;
+
   return SILC_CONFIG_OK;
 
  got_err:
   silc_free(tmp->host);
   silc_free(tmp->version);
   silc_free(tmp->backup_replace_ip);
-  my_free_authdata(tmp->auth_meth, tmp->auth_data);
+  CONFIG_FREE_AUTH(tmp);
   silc_free(tmp);
+  config->tmp = NULL;
   return got_errno;
 }
 
 /* known config options tables */
 static const SilcConfigTable table_general[] = {
-  { "modulepath",      SILC_CONFIG_ARG_STRE,   fetch_generic,  NULL },
+  { "module_path",             SILC_CONFIG_ARG_STRE,   fetch_generic,  NULL },
+  { "prefer_passphrase_auth",  SILC_CONFIG_ARG_TOGGLE, fetch_generic,  NULL },
+  { "require_reverse_lookup",  SILC_CONFIG_ARG_TOGGLE, fetch_generic,  NULL },
+  { "keepalive_secs",          SILC_CONFIG_ARG_INT,    fetch_generic,  NULL },
+  { "reconnect_count",         SILC_CONFIG_ARG_INT,    fetch_generic,  NULL },
+  { "reconnect_interval",              SILC_CONFIG_ARG_INT,    fetch_generic,  NULL },
+  { "reconnect_interval_max",   SILC_CONFIG_ARG_INT,   fetch_generic,  NULL },
+  { "reconnect_keep_trying",   SILC_CONFIG_ARG_TOGGLE, fetch_generic,  NULL },
   { 0, 0, 0, 0 }
 };
 
 static const SilcConfigTable table_cipher[] = {
   { "name",            SILC_CONFIG_ARG_STR,    fetch_cipher,   NULL },
   { "module",          SILC_CONFIG_ARG_STRE,   fetch_cipher,   NULL },
-  { "key_length",      SILC_CONFIG_ARG_INT,    fetch_cipher,   NULL },
-  { "block_length",    SILC_CONFIG_ARG_INT,    fetch_cipher,   NULL },
+  { "keylength",       SILC_CONFIG_ARG_INT,    fetch_cipher,   NULL },
+  { "blocklength",     SILC_CONFIG_ARG_INT,    fetch_cipher,   NULL },
   { 0, 0, 0, 0 }
 };
 
 static const SilcConfigTable table_hash[] = {
   { "name",            SILC_CONFIG_ARG_STR,    fetch_hash,     NULL },
   { "module",          SILC_CONFIG_ARG_STRE,   fetch_hash,     NULL },
-  { "block_length",    SILC_CONFIG_ARG_INT,    fetch_hash,     NULL },
-  { "digest_length",   SILC_CONFIG_ARG_INT,    fetch_hash,     NULL },
+  { "blocklength",     SILC_CONFIG_ARG_INT,    fetch_hash,     NULL },
+  { "digestlength",    SILC_CONFIG_ARG_INT,    fetch_hash,     NULL },
   { 0, 0, 0, 0 }
 };
 
 static const SilcConfigTable table_hmac[] = {
   { "name",            SILC_CONFIG_ARG_STR,    fetch_hmac,     NULL },
   { "hash",            SILC_CONFIG_ARG_STR,    fetch_hmac,     NULL },
-  { "mac_length",      SILC_CONFIG_ARG_INT,    fetch_hmac,     NULL },
+  { "maclength",       SILC_CONFIG_ARG_INT,    fetch_hmac,     NULL },
   { 0, 0, 0, 0 }
 };
 
@@ -831,7 +957,7 @@ static const SilcConfigTable table_serverinfo[] = {
   { "servertype",      SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
   { "location",                SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
   { "admin",           SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
-  { "email",           SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
+  { "adminemail",      SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
   { "user",            SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
   { "group",           SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
   { "publickey",       SILC_CONFIG_ARG_STR,    fetch_serverinfo, NULL},
@@ -858,21 +984,23 @@ static const SilcConfigTable table_logging[] = {
   { 0, 0, 0, 0 }
 };
 
-/* still unsupported
-static const SilcConfigTable table_class[] = {
-  { "name",            SILC_CONFIG_ARG_STR,    fetch_class,    NULL },
-  { "ping",            SILC_CONFIG_ARG_INT,    fetch_class,    NULL },
-  { "connect",         SILC_CONFIG_ARG_INT,    fetch_class,    NULL },
-  { "links",           SILC_CONFIG_ARG_INT,    fetch_class,    NULL },
+static const SilcConfigTable table_connparam[] = {
+  { "name",                   SILC_CONFIG_ARG_STR,    fetch_connparam, NULL },
+  { "require_reverse_lookup",  SILC_CONFIG_ARG_TOGGLE, fetch_connparam,        NULL },
+  { "keepalive_secs",         SILC_CONFIG_ARG_INT,    fetch_connparam, NULL },
+  { "reconnect_count",        SILC_CONFIG_ARG_INT,    fetch_connparam, NULL },
+  { "reconnect_interval",      SILC_CONFIG_ARG_INT,    fetch_connparam,        NULL },
+  { "reconnect_interval_max",  SILC_CONFIG_ARG_INT,    fetch_connparam,        NULL },
+  { "reconnect_keep_trying",   SILC_CONFIG_ARG_TOGGLE, fetch_connparam,        NULL },
   { 0, 0, 0, 0 }
-}; */
+};
 
 static const SilcConfigTable table_client[] = {
   { "host",            SILC_CONFIG_ARG_STRE,   fetch_client,   NULL },
-  { "authmethod",      SILC_CONFIG_ARG_STR,    fetch_client,   NULL },
-  { "authdata",                SILC_CONFIG_ARG_STR,    fetch_client,   NULL },
+  { "passphrase",      SILC_CONFIG_ARG_STR,    fetch_client,   NULL },
+  { "publickey",       SILC_CONFIG_ARG_STR,    fetch_client,   NULL },
   { "port",            SILC_CONFIG_ARG_INT,    fetch_client,   NULL },
-  { "class",           SILC_CONFIG_ARG_STR,    fetch_client,   NULL },
+  { "param",           SILC_CONFIG_ARG_STR,    fetch_client,   NULL },
   { 0, 0, 0, 0 }
 };
 
@@ -880,10 +1008,10 @@ static const SilcConfigTable table_admin[] = {
   { "host",            SILC_CONFIG_ARG_STRE,   fetch_admin,    NULL },
   { "user",            SILC_CONFIG_ARG_STRE,   fetch_admin,    NULL },
   { "nick",            SILC_CONFIG_ARG_STRE,   fetch_admin,    NULL },
-  { "authmethod",      SILC_CONFIG_ARG_STR,    fetch_admin,    NULL },
-  { "authdata",                SILC_CONFIG_ARG_STR,    fetch_admin,    NULL },
+  { "passphrase",      SILC_CONFIG_ARG_STR,    fetch_admin,    NULL },
+  { "publickey",       SILC_CONFIG_ARG_STR,    fetch_admin,    NULL },
   { "port",            SILC_CONFIG_ARG_INT,    fetch_admin,    NULL },
-  { "class",           SILC_CONFIG_ARG_STR,    fetch_admin,    NULL },
+  { "param",           SILC_CONFIG_ARG_STR,    fetch_admin,    NULL },
   { 0, 0, 0, 0 }
 };
 
@@ -896,22 +1024,21 @@ static const SilcConfigTable table_deny[] = {
 
 static const SilcConfigTable table_serverconn[] = {
   { "host",            SILC_CONFIG_ARG_STRE,   fetch_server,   NULL },
-  { "authmethod",      SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
-  { "authdata",                SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
-  { "port",            SILC_CONFIG_ARG_INT,    fetch_server,   NULL },
+  { "passphrase",      SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
+  { "publickey",       SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
   { "versionid",       SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
-  { "class",           SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
+  { "param",           SILC_CONFIG_ARG_STR,    fetch_server,   NULL },
   { "backup",          SILC_CONFIG_ARG_TOGGLE, fetch_server,   NULL },
   { 0, 0, 0, 0 }
 };
 
 static const SilcConfigTable table_routerconn[] = {
   { "host",            SILC_CONFIG_ARG_STRE,   fetch_router,   NULL },
-  { "authmethod",      SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
-  { "authdata",                SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
   { "port",            SILC_CONFIG_ARG_INT,    fetch_router,   NULL },
+  { "passphrase",      SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
+  { "publickey",       SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
   { "versionid",       SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
-  { "class",           SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
+  { "param",           SILC_CONFIG_ARG_STR,    fetch_router,   NULL },
   { "initiator",       SILC_CONFIG_ARG_TOGGLE, fetch_router,   NULL },
   { "backuphost",      SILC_CONFIG_ARG_STRE,   fetch_router,   NULL },
   { "backupport",      SILC_CONFIG_ARG_INT,    fetch_router,   NULL },
@@ -920,19 +1047,19 @@ static const SilcConfigTable table_routerconn[] = {
 };
 
 static const SilcConfigTable table_main[] = {
-  { "general",         SILC_CONFIG_ARG_BLOCK,  NULL,           table_general },
-  { "cipher",          SILC_CONFIG_ARG_BLOCK,  fetch_cipher,   table_cipher },
-  { "hash",            SILC_CONFIG_ARG_BLOCK,  fetch_hash,     table_hash },
-  { "hmac",            SILC_CONFIG_ARG_BLOCK,  fetch_hmac,     table_hmac },
-  { "pkcs",            SILC_CONFIG_ARG_BLOCK,  fetch_pkcs,     table_pkcs },
+  { "general",         SILC_CONFIG_ARG_BLOCK,  NULL,          table_general },
+  { "cipher",          SILC_CONFIG_ARG_BLOCK,  fetch_cipher,  table_cipher },
+  { "hash",            SILC_CONFIG_ARG_BLOCK,  fetch_hash,    table_hash },
+  { "hmac",            SILC_CONFIG_ARG_BLOCK,  fetch_hmac,    table_hmac },
+  { "pkcs",            SILC_CONFIG_ARG_BLOCK,  fetch_pkcs,    table_pkcs },
   { "serverinfo",      SILC_CONFIG_ARG_BLOCK,  fetch_serverinfo, table_serverinfo },
-  { "logging",         SILC_CONFIG_ARG_BLOCK,  NULL,           table_logging },
-/*{ "class",           SILC_CONFIG_ARG_BLOCK,  fetch_class,    table_class }, */
-  { "client",          SILC_CONFIG_ARG_BLOCK,  fetch_client,   table_client },
-  { "admin",           SILC_CONFIG_ARG_BLOCK,  fetch_admin,    table_admin },
-  { "deny",            SILC_CONFIG_ARG_BLOCK,  fetch_deny,     table_deny },
-  { "serverconnection",        SILC_CONFIG_ARG_BLOCK,  fetch_server,   table_serverconn },
-  { "routerconnection",        SILC_CONFIG_ARG_BLOCK,  fetch_router,   table_routerconn },
+  { "logging",         SILC_CONFIG_ARG_BLOCK,  NULL,          table_logging },
+  { "connectionparam", SILC_CONFIG_ARG_BLOCK,  fetch_connparam, table_connparam },
+  { "client",          SILC_CONFIG_ARG_BLOCK,  fetch_client,  table_client },
+  { "admin",           SILC_CONFIG_ARG_BLOCK,  fetch_admin,   table_admin },
+  { "deny",            SILC_CONFIG_ARG_BLOCK,  fetch_deny,    table_deny },
+  { "serverconnection",        SILC_CONFIG_ARG_BLOCK,  fetch_server,  table_serverconn },
+  { "routerconnection",        SILC_CONFIG_ARG_BLOCK,  fetch_router,  table_routerconn },
   { 0, 0, 0, 0 }
 };
 
@@ -1047,14 +1174,14 @@ void silc_server_config_destroy(SilcServerConfig config)
   SILC_SERVER_CONFIG_LIST_DESTROY(SilcServerConfigSectionClient,
                                  config->clients)
     silc_free(di->host);
-    my_free_authdata(di->auth_meth, di->auth_data);
+    CONFIG_FREE_AUTH(di);
     silc_free(di);
   }
   SILC_SERVER_CONFIG_LIST_DESTROY(SilcServerConfigSectionAdmin, config->admins)
     silc_free(di->host);
     silc_free(di->user);
     silc_free(di->nick);
-    my_free_authdata(di->auth_meth, di->auth_data);
+    CONFIG_FREE_AUTH(di);
     silc_free(di);
   }
   SILC_SERVER_CONFIG_LIST_DESTROY(SilcServerConfigSectionDeny, config->denied)
@@ -1066,7 +1193,7 @@ void silc_server_config_destroy(SilcServerConfig config)
                                  config->servers)
     silc_free(di->host);
     silc_free(di->version);
-    my_free_authdata(di->auth_meth, di->auth_data);
+    CONFIG_FREE_AUTH(di);
     silc_free(di);
   }
   SILC_SERVER_CONFIG_LIST_DESTROY(SilcServerConfigSectionRouter,
@@ -1074,7 +1201,7 @@ void silc_server_config_destroy(SilcServerConfig config)
     silc_free(di->host);
     silc_free(di->version);
     silc_free(di->backup_replace_ip);
-    my_free_authdata(di->auth_meth, di->auth_data);
+    CONFIG_FREE_AUTH(di);
     silc_free(di);
   }
 }
@@ -1327,29 +1454,34 @@ bool silc_server_config_register_pkcs(SilcServer server)
 
 /* Sets log files where log messages are saved by the server logger. */
 
-void silc_server_config_setlogfiles(SilcServerConfig config,
-                               SilcSchedule sked)
+void silc_server_config_setlogfiles(SilcServer server)
 {
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionLogging *this;
 
   SILC_LOG_DEBUG(("Setting configured log file names"));
 
   if ((this = config->logging_info))
-    silc_log_set_file(SILC_LOG_INFO, this->file, this->maxsize, sked);
+    silc_log_set_file(SILC_LOG_INFO, this->file, this->maxsize, 
+                     server->schedule);
   if ((this = config->logging_warnings))
-    silc_log_set_file(SILC_LOG_WARNING, this->file, this->maxsize, sked);
+    silc_log_set_file(SILC_LOG_WARNING, this->file, this->maxsize, 
+                     server->schedule);
   if ((this = config->logging_errors))
-    silc_log_set_file(SILC_LOG_ERROR, this->file, this->maxsize, sked);
+    silc_log_set_file(SILC_LOG_ERROR, this->file, this->maxsize,
+                     server->schedule);
   if ((this = config->logging_fatals))
-    silc_log_set_file(SILC_LOG_FATAL, this->file, this->maxsize, sked);
+    silc_log_set_file(SILC_LOG_FATAL, this->file, this->maxsize, 
+                     server->schedule);
 }
 
 /* Returns client authentication information from configuration file by host
    (name or ip) */
 
 SilcServerConfigSectionClient *
-silc_server_config_find_client(SilcServerConfig config, char *host, int port)
+silc_server_config_find_client(SilcServer server, char *host, int port)
 {
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionClient *client;
 
   if (!config || !port) {
@@ -1368,6 +1500,7 @@ silc_server_config_find_client(SilcServerConfig config, char *host, int port)
       continue;
     break;
   }
+
   /* if none matched, then client is already NULL */
   return client;
 }
@@ -1376,9 +1509,10 @@ silc_server_config_find_client(SilcServerConfig config, char *host, int port)
    nickname. */
 
 SilcServerConfigSectionAdmin *
-silc_server_config_find_admin(SilcServerConfig config,
-                             char *host, char *user, char *nick)
+silc_server_config_find_admin(SilcServer server, char *host, char *user, 
+                             char *nick)
 {
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionAdmin *admin;
 
   /* make sure we have a value for the matching parameters */
@@ -1399,6 +1533,7 @@ silc_server_config_find_admin(SilcServerConfig config,
     /* no checks failed -> this entry matches */
     break;
   }
+
   /* if none matched, then admin is already NULL */
   return admin;
 }
@@ -1406,9 +1541,9 @@ silc_server_config_find_admin(SilcServerConfig config,
 /* Returns the denied connection configuration entry by host and port. */
 
 SilcServerConfigSectionDeny *
-silc_server_config_find_denied(SilcServerConfig config,
-                              char *host, uint16 port)
+silc_server_config_find_denied(SilcServer server, char *host, uint16 port)
 {
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionDeny *deny;
 
   /* make sure we have a value for the matching parameters */
@@ -1426,21 +1561,19 @@ silc_server_config_find_denied(SilcServerConfig config,
       continue;
     break;
   }
+
   /* if none matched, then deny is already NULL */
   return deny;
 }
 
 /* Returns server connection info from server configuartion by host
-   (name or ip). If `port' is non-null then both name or IP and the port
-   must match. */
+   (name or ip). */
 
 SilcServerConfigSectionServer *
-silc_server_config_find_server_conn(SilcServerConfig config,
-                                   char *host, int port)
+silc_server_config_find_server_conn(SilcServer server, char *host)
 {
-  int i;
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionServer *serv = NULL;
-  bool match = FALSE;
 
   if (!host)
     return NULL;
@@ -1448,23 +1581,12 @@ silc_server_config_find_server_conn(SilcServerConfig config,
   if (!config->servers)
     return NULL;
 
-  serv = config->servers;
-  for (i = 0; serv; i++) {
-    if (silc_string_compare(serv->host, host))
-      match = TRUE;
-
-    if (port && serv->port && serv->port != port)
-      match = FALSE;
-
-    if (match)
-      break;
-
-    serv = serv->next;
+  for (serv = config->servers; serv; serv = serv->next) {
+    if (!silc_string_compare(serv->host, host))
+      continue;
+    break;
   }
 
-  if (!serv)
-    return NULL;
-
   return serv;
 }
 
@@ -1472,12 +1594,10 @@ silc_server_config_find_server_conn(SilcServerConfig config,
    host (name or ip). */
 
 SilcServerConfigSectionRouter *
-silc_server_config_find_router_conn(SilcServerConfig config,
-                                   char *host, int port)
+silc_server_config_find_router_conn(SilcServer server, char *host, int port)
 {
-  int i;
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionRouter *serv = NULL;
-  bool match = FALSE;
 
   if (!host)
     return NULL;
@@ -1485,33 +1605,25 @@ silc_server_config_find_router_conn(SilcServerConfig config,
   if (!config->routers)
     return NULL;
 
-  serv = config->routers;
-  for (i = 0; serv; i++) {
-    if (silc_string_compare(serv->host, host))
-      match = TRUE;
-
+  for (serv = config->routers; serv; serv = serv->next) {
+    if (!silc_string_compare(serv->host, host))
+      continue;
     if (port && serv->port && serv->port != port)
-      match = FALSE;
-
-    if (match)
-      break;
-
-    serv = serv->next;
+      continue;
+    break;
   }
 
-  if (!serv)
-    return NULL;
-
   return serv;
 }
 
 /* Returns TRUE if configuration for a router connection that we are
    initiating exists. */
 
-bool silc_server_config_is_primary_route(SilcServerConfig config)
+bool silc_server_config_is_primary_route(SilcServer server)
 {
-  int i;
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionRouter *serv = NULL;
+  int i;
   bool found = FALSE;
 
   serv = config->routers;
@@ -1531,10 +1643,11 @@ bool silc_server_config_is_primary_route(SilcServerConfig config)
    have primary router configured. */
 
 SilcServerConfigSectionRouter *
-silc_server_config_get_primary_router(SilcServerConfig config)
+silc_server_config_get_primary_router(SilcServer server)
 {
-  int i;
+  SilcServerConfig config = server->config;
   SilcServerConfigSectionRouter *serv = NULL;
+  int i;
 
   serv = config->routers;
   for (i = 0; serv; i++) {
@@ -1545,3 +1658,26 @@ silc_server_config_get_primary_router(SilcServerConfig config)
 
   return NULL;
 }
+
+/* Set default values to stuff that was not configured. */
+
+bool silc_server_config_set_defaults(SilcServer server)
+{
+  SilcServerConfig config = server->config;
+
+  config->param.keepalive_secs = (config->param.keepalive_secs ? 
+                                 config->param.keepalive_secs :
+                                 SILC_SERVER_KEEPALIVE);
+  config->param.reconnect_count = (config->param.reconnect_count ? 
+                                  config->param.reconnect_count :
+                                  SILC_SERVER_RETRY_COUNT);
+  config->param.reconnect_interval = (config->param.reconnect_interval ? 
+                                     config->param.reconnect_interval :
+                                     SILC_SERVER_RETRY_INTERVAL_MIN);
+  config->param.reconnect_interval_max =
+    (config->param.reconnect_interval_max ? 
+     config->param.reconnect_interval_max :
+     SILC_SERVER_RETRY_INTERVAL_MAX);
+
+  return TRUE;
+}