]> andersk Git - openssh.git/blobdiff - servconf.c
- (bal) OpenBSD Sync
[openssh.git] / servconf.c
index 77ac8452749990f35ac667b580ab7238e2670d3c..fb42d74ef165f1612ccf9ba5f8e2a61a52afe157 100644 (file)
@@ -1,18 +1,16 @@
 /*
- *
- * servconf.c
- *
- * Author: Tatu Ylonen <ylo@cs.hut.fi>
- *
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
  *                    All rights reserved
  *
- * Created: Mon Aug 21 15:48:58 1995 ylo
- *
+ * As far as I am concerned, the code I have written for this software
+ * can be used freely for any purpose.  Any derived versions of this
+ * software must be clearly marked as such, and if the derived work is
+ * incompatible with the protocol description in the RFC file, it must be
+ * called by a name other than "ssh" or "Secure Shell".
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: servconf.c,v 1.47 2000/07/10 16:30:25 ho Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.57 2001/01/08 22:29:05 markus Exp $");
 
 #include "ssh.h"
 #include "servconf.h"
@@ -31,8 +29,7 @@ initialize_server_options(ServerOptions *options)
        options->num_ports = 0;
        options->ports_from_cmdline = 0;
        options->listen_addrs = NULL;
-       options->host_key_file = NULL;
-       options->host_dsa_key_file = NULL;
+       options->num_host_key_files = 0;
        options->pid_file = NULL;
        options->server_key_bits = -1;
        options->login_grace_time = -1;
@@ -52,7 +49,7 @@ initialize_server_options(ServerOptions *options)
        options->rhosts_authentication = -1;
        options->rhosts_rsa_authentication = -1;
        options->rsa_authentication = -1;
-       options->dsa_authentication = -1;
+       options->pubkey_authentication = -1;
 #ifdef KRB4
        options->kerberos_authentication = -1;
        options->kerberos_or_local_passwd = -1;
@@ -63,11 +60,13 @@ initialize_server_options(ServerOptions *options)
        options->afs_token_passing = -1;
 #endif
        options->password_authentication = -1;
+       options->kbd_interactive_authentication = -1;
 #ifdef SKEY
        options->skey_authentication = -1;
 #endif
        options->permit_empty_passwd = -1;
        options->use_login = -1;
+       options->allow_tcp_forwarding = -1;
        options->num_allow_users = 0;
        options->num_deny_users = 0;
        options->num_allow_groups = 0;
@@ -76,20 +75,28 @@ initialize_server_options(ServerOptions *options)
        options->protocol = SSH_PROTO_UNKNOWN;
        options->gateway_ports = -1;
        options->num_subsystems = 0;
+       options->max_startups_begin = -1;
+       options->max_startups_rate = -1;
        options->max_startups = -1;
+       options->banner = NULL;
 }
 
 void
 fill_default_server_options(ServerOptions *options)
 {
+       if (options->protocol == SSH_PROTO_UNKNOWN)
+               options->protocol = SSH_PROTO_1|SSH_PROTO_2;
+       if (options->num_host_key_files == 0) {
+               /* fill default hostkeys for protocols */
+               if (options->protocol & SSH_PROTO_1)
+                       options->host_key_files[options->num_host_key_files++] = HOST_KEY_FILE;
+               if (options->protocol & SSH_PROTO_2)
+                       options->host_key_files[options->num_host_key_files++] = HOST_DSA_KEY_FILE;
+       }
        if (options->num_ports == 0)
                options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
        if (options->listen_addrs == NULL)
                add_listen_addr(options, NULL);
-       if (options->host_key_file == NULL)
-               options->host_key_file = HOST_KEY_FILE;
-       if (options->host_dsa_key_file == NULL)
-               options->host_dsa_key_file = HOST_DSA_KEY_FILE;
        if (options->pid_file == NULL)
                options->pid_file = SSH_DAEMON_PID_FILE;
        if (options->server_key_bits == -1)
@@ -123,15 +130,15 @@ fill_default_server_options(ServerOptions *options)
        if (options->log_facility == (SyslogFacility) (-1))
                options->log_facility = SYSLOG_FACILITY_AUTH;
        if (options->log_level == (LogLevel) (-1))
-               options->log_level = SYSLOG_LEVEL_INFO;
+               options->log_level = SYSLOG_LEVEL_NOTICE;
        if (options->rhosts_authentication == -1)
                options->rhosts_authentication = 0;
        if (options->rhosts_rsa_authentication == -1)
                options->rhosts_rsa_authentication = 0;
        if (options->rsa_authentication == -1)
                options->rsa_authentication = 1;
-       if (options->dsa_authentication == -1)
-               options->dsa_authentication = 1;
+       if (options->pubkey_authentication == -1)
+               options->pubkey_authentication = 1;
 #ifdef KRB4
        if (options->kerberos_authentication == -1)
                options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
@@ -148,6 +155,8 @@ fill_default_server_options(ServerOptions *options)
 #endif /* AFS */
        if (options->password_authentication == -1)
                options->password_authentication = 1;
+       if (options->kbd_interactive_authentication == -1)
+               options->kbd_interactive_authentication = 0;
 #ifdef SKEY
        if (options->skey_authentication == -1)
                options->skey_authentication = 1;
@@ -156,16 +165,18 @@ fill_default_server_options(ServerOptions *options)
                options->permit_empty_passwd = 0;
        if (options->use_login == -1)
                options->use_login = 0;
-       if (options->protocol == SSH_PROTO_UNKNOWN)
-               options->protocol = SSH_PROTO_1|SSH_PROTO_2;
+       if (options->allow_tcp_forwarding == -1)
+               options->allow_tcp_forwarding = 1;
        if (options->gateway_ports == -1)
                options->gateway_ports = 0;
        if (options->max_startups == -1)
                options->max_startups = 10;
+       if (options->max_startups_rate == -1)
+               options->max_startups_rate = 100;               /* 100% */
+       if (options->max_startups_begin == -1)
+               options->max_startups_begin = options->max_startups;
 }
 
-#define WHITESPACE " \t\r\n="
-
 /* Keyword tokens. */
 typedef enum {
        sBadOption,             /* == unknown option */
@@ -181,12 +192,14 @@ typedef enum {
 #ifdef SKEY
        sSkeyAuthentication,
 #endif
-       sPasswordAuthentication, sListenAddress,
+       sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress,
        sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset,
        sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail,
-       sUseLogin, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
-       sIgnoreUserKnownHosts, sHostDSAKeyFile, sCiphers, sProtocol, sPidFile,
-       sGatewayPorts, sDSAAuthentication, sXAuthLocation, sSubsystem, sMaxStartups
+       sUseLogin, sAllowTcpForwarding,
+       sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
+       sIgnoreUserKnownHosts, sCiphers, sProtocol, sPidFile,
+       sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
+       sBanner
 } ServerOpCodes;
 
 /* Textual representation of the tokens. */
@@ -196,7 +209,7 @@ static struct {
 } keywords[] = {
        { "port", sPort },
        { "hostkey", sHostKeyFile },
-       { "hostdsakey", sHostDSAKeyFile },
+       { "hostdsakey", sHostKeyFile },                                 /* alias */
        { "pidfile", sPidFile },
        { "serverkeybits", sServerKeyBits },
        { "logingracetime", sLoginGraceTime },
@@ -207,7 +220,8 @@ static struct {
        { "rhostsauthentication", sRhostsAuthentication },
        { "rhostsrsaauthentication", sRhostsRSAAuthentication },
        { "rsaauthentication", sRSAAuthentication },
-       { "dsaauthentication", sDSAAuthentication },
+       { "pubkeyauthentication", sPubkeyAuthentication },
+       { "dsaauthentication", sPubkeyAuthentication },                 /* alias */
 #ifdef KRB4
        { "kerberosauthentication", sKerberosAuthentication },
        { "kerberosorlocalpasswd", sKerberosOrLocalPasswd },
@@ -218,6 +232,7 @@ static struct {
        { "afstokenpassing", sAFSTokenPassing },
 #endif
        { "passwordauthentication", sPasswordAuthentication },
+       { "kbdinteractiveauthentication", sKbdInteractiveAuthentication },
 #ifdef SKEY
        { "skeyauthentication", sSkeyAuthentication },
 #endif
@@ -234,6 +249,7 @@ static struct {
        { "uselogin", sUseLogin },
        { "randomseed", sRandomSeedFile },
        { "keepalive", sKeepAlives },
+       { "allowtcpforwarding", sAllowTcpForwarding },
        { "allowusers", sAllowUsers },
        { "denyusers", sDenyUsers },
        { "allowgroups", sAllowGroups },
@@ -243,6 +259,7 @@ static struct {
        { "gatewayports", sGatewayPorts },
        { "subsystem", sSubsystem },
        { "maxstartups", sMaxStartups },
+       { "banner", sBanner },
        { NULL, 0 }
 };
 
@@ -255,7 +272,7 @@ static ServerOpCodes
 parse_token(const char *cp, const char *filename,
            int linenum)
 {
-       unsigned int i;
+       u_int i;
 
        for (i = 0; keywords[i].name; i++)
                if (strcasecmp(cp, keywords[i].name) == 0)
@@ -318,10 +335,15 @@ read_server_config(ServerOptions *options, const char *filename)
        linenum = 0;
        while (fgets(line, sizeof(line), f)) {
                linenum++;
-               cp = line + strspn(line, WHITESPACE);
-               if (!*cp || *cp == '#')
+               cp = line;
+               arg = strdelim(&cp);
+               /* Ignore leading whitespace */
+               if (*arg == '\0')
+                       arg = strdelim(&cp);
+               if (!*arg || *arg == '#')
                        continue;
-               arg = strsep(&cp, WHITESPACE);
+               intptr = NULL;
+               charptr = NULL;
                opcode = parse_token(arg, filename, linenum);
                switch (opcode) {
                case sBadOption:
@@ -337,7 +359,7 @@ read_server_config(ServerOptions *options, const char *filename)
                        if (options->num_ports >= MAX_PORTS)
                                fatal("%s line %d: too many ports.\n",
                                    filename, linenum);
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0')
                                fatal("%s line %d: missing port number.\n",
                                    filename, linenum);
@@ -347,7 +369,7 @@ read_server_config(ServerOptions *options, const char *filename)
                case sServerKeyBits:
                        intptr = &options->server_key_bits;
 parse_int:
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0') {
                                fprintf(stderr, "%s line %d: missing integer value.\n",
                                        filename, linenum);
@@ -367,7 +389,7 @@ parse_int:
                        goto parse_int;
 
                case sListenAddress:
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0')
                                fatal("%s line %d: missing inet addr.\n",
                                    filename, linenum);
@@ -375,18 +397,26 @@ parse_int:
                        break;
 
                case sHostKeyFile:
-               case sHostDSAKeyFile:
-                       charptr = (opcode == sHostKeyFile ) ?
-                           &options->host_key_file : &options->host_dsa_key_file;
+                       intptr = &options->num_host_key_files;
+                       if (*intptr >= MAX_HOSTKEYS) {
+                               fprintf(stderr, "%s line %d: to many host keys specified (max %d).\n",
+                                   filename, linenum, MAX_HOSTKEYS);
+                               exit(1);
+                       }
+                       charptr = &options->host_key_files[*intptr];
 parse_filename:
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0') {
                                fprintf(stderr, "%s line %d: missing file name.\n",
                                    filename, linenum);
                                exit(1);
                        }
-                       if (*charptr == NULL)
+                       if (*charptr == NULL) {
                                *charptr = tilde_expand_filename(arg, getuid());
+                               /* increase optional counter */
+                               if (intptr != NULL)
+                                       *intptr = *intptr + 1;
+                       }
                        break;
 
                case sPidFile:
@@ -396,12 +426,12 @@ parse_filename:
                case sRandomSeedFile:
                        fprintf(stderr, "%s line %d: \"randomseed\" option is obsolete.\n",
                                filename, linenum);
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        break;
 
                case sPermitRootLogin:
                        intptr = &options->permit_root_login;
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0') {
                                fprintf(stderr, "%s line %d: missing yes/without-password/no argument.\n",
                                        filename, linenum);
@@ -425,7 +455,7 @@ parse_filename:
                case sIgnoreRhosts:
                        intptr = &options->ignore_rhosts;
 parse_flag:
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0') {
                                fprintf(stderr, "%s line %d: missing yes/no argument.\n",
                                        filename, linenum);
@@ -460,8 +490,8 @@ parse_flag:
                        intptr = &options->rsa_authentication;
                        goto parse_flag;
 
-               case sDSAAuthentication:
-                       intptr = &options->dsa_authentication;
+               case sPubkeyAuthentication:
+                       intptr = &options->pubkey_authentication;
                        goto parse_flag;
 
 #ifdef KRB4
@@ -492,6 +522,10 @@ parse_flag:
                        intptr = &options->password_authentication;
                        goto parse_flag;
 
+               case sKbdInteractiveAuthentication:
+                       intptr = &options->kbd_interactive_authentication;
+                       goto parse_flag;
+
                case sCheckMail:
                        intptr = &options->check_mail;
                        goto parse_flag;
@@ -540,7 +574,7 @@ parse_flag:
 
                case sLogFacility:
                        intptr = (int *) &options->log_facility;
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        value = log_facility_number(arg);
                        if (value == (SyslogFacility) - 1)
                                fatal("%.200s line %d: unsupported log facility '%s'\n",
@@ -551,7 +585,7 @@ parse_flag:
 
                case sLogLevel:
                        intptr = (int *) &options->log_level;
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        value = log_level_number(arg);
                        if (value == (LogLevel) - 1)
                                fatal("%.200s line %d: unsupported log level '%s'\n",
@@ -560,8 +594,12 @@ parse_flag:
                                *intptr = (LogLevel) value;
                        break;
 
+               case sAllowTcpForwarding:
+                       intptr = &options->allow_tcp_forwarding;
+                       goto parse_flag;
+
                case sAllowUsers:
-                       while ((arg = strsep(&cp, WHITESPACE)) && *arg != '\0') {
+                       while ((arg = strdelim(&cp)) && *arg != '\0') {
                                if (options->num_allow_users >= MAX_ALLOW_USERS)
                                        fatal("%s line %d: too many allow users.\n",
                                            filename, linenum);
@@ -570,7 +608,7 @@ parse_flag:
                        break;
 
                case sDenyUsers:
-                       while ((arg = strsep(&cp, WHITESPACE)) && *arg != '\0') {
+                       while ((arg = strdelim(&cp)) && *arg != '\0') {
                                if (options->num_deny_users >= MAX_DENY_USERS)
                                        fatal( "%s line %d: too many deny users.\n",
                                            filename, linenum);
@@ -579,7 +617,7 @@ parse_flag:
                        break;
 
                case sAllowGroups:
-                       while ((arg = strsep(&cp, WHITESPACE)) && *arg != '\0') {
+                       while ((arg = strdelim(&cp)) && *arg != '\0') {
                                if (options->num_allow_groups >= MAX_ALLOW_GROUPS)
                                        fatal("%s line %d: too many allow groups.\n",
                                            filename, linenum);
@@ -588,7 +626,7 @@ parse_flag:
                        break;
 
                case sDenyGroups:
-                       while ((arg = strsep(&cp, WHITESPACE)) && *arg != '\0') {
+                       while ((arg = strdelim(&cp)) && *arg != '\0') {
                                if (options->num_deny_groups >= MAX_DENY_GROUPS)
                                        fatal("%s line %d: too many deny groups.\n",
                                            filename, linenum);
@@ -597,7 +635,7 @@ parse_flag:
                        break;
 
                case sCiphers:
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0')
                                fatal("%s line %d: Missing argument.", filename, linenum);
                        if (!ciphers_valid(arg))
@@ -609,7 +647,7 @@ parse_flag:
 
                case sProtocol:
                        intptr = &options->protocol;
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0')
                                fatal("%s line %d: Missing argument.", filename, linenum);
                        value = proto_spec(arg);
@@ -625,7 +663,7 @@ parse_flag:
                                fatal("%s line %d: too many subsystems defined.",
                                      filename, linenum);
                        }
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0')
                                fatal("%s line %d: Missing subsystem name.",
                                      filename, linenum);
@@ -634,7 +672,7 @@ parse_flag:
                                        fatal("%s line %d: Subsystem '%s' already defined.",
                                              filename, linenum, arg);
                        options->subsystem_name[options->num_subsystems] = xstrdup(arg);
-                       arg = strsep(&cp, WHITESPACE);
+                       arg = strdelim(&cp);
                        if (!arg || *arg == '\0')
                                fatal("%s line %d: Missing subsystem command.",
                                      filename, linenum);
@@ -643,15 +681,35 @@ parse_flag:
                        break;
 
                case sMaxStartups:
+                       arg = strdelim(&cp);
+                       if (!arg || *arg == '\0')
+                               fatal("%s line %d: Missing MaxStartups spec.",
+                                     filename, linenum);
+                       if (sscanf(arg, "%d:%d:%d",
+                           &options->max_startups_begin,
+                           &options->max_startups_rate,
+                           &options->max_startups) == 3) {
+                               if (options->max_startups_begin >
+                                   options->max_startups ||
+                                   options->max_startups_rate > 100 ||
+                                   options->max_startups_rate < 1)
+                               fatal("%s line %d: Illegal MaxStartups spec.",
+                                     filename, linenum);
+                               break;
+                       }
                        intptr = &options->max_startups;
                        goto parse_int;
 
+               case sBanner:
+                       charptr = &options->banner;
+                       goto parse_filename;
+                       
                default:
                        fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
                                filename, linenum, arg, opcode);
                        exit(1);
                }
-               if ((arg = strsep(&cp, WHITESPACE)) != NULL && *arg != '\0') {
+               if ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
                        fprintf(stderr, 
                                "%s line %d: garbage at end of line; \"%.200s\".\n",
                                filename, linenum, arg);
This page took 0.388796 seconds and 4 git commands to generate.