[BACK]Return to readconf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/readconf.c between version 1.380 and 1.381

version 1.380, 2023/07/17 06:16:33 version 1.381, 2023/08/28 03:31:16
Line 162 
Line 162 
         oFingerprintHash, oUpdateHostkeys, oHostbasedAcceptedAlgorithms,          oFingerprintHash, oUpdateHostkeys, oHostbasedAcceptedAlgorithms,
         oPubkeyAcceptedAlgorithms, oCASignatureAlgorithms, oProxyJump,          oPubkeyAcceptedAlgorithms, oCASignatureAlgorithms, oProxyJump,
         oSecurityKeyProvider, oKnownHostsCommand, oRequiredRSASize,          oSecurityKeyProvider, oKnownHostsCommand, oRequiredRSASize,
         oEnableEscapeCommandline,          oEnableEscapeCommandline, oObscureKeystrokeTiming,
         oIgnore, oIgnoredUnknownOption, oDeprecated, oUnsupported          oIgnore, oIgnoredUnknownOption, oDeprecated, oUnsupported
 } OpCodes;  } OpCodes;
   
Line 311 
Line 311 
         { "knownhostscommand", oKnownHostsCommand },          { "knownhostscommand", oKnownHostsCommand },
         { "requiredrsasize", oRequiredRSASize },          { "requiredrsasize", oRequiredRSASize },
         { "enableescapecommandline", oEnableEscapeCommandline },          { "enableescapecommandline", oEnableEscapeCommandline },
           { "obscurekeystroketiming", oObscureKeystrokeTiming },
   
         { NULL, oBadOption }          { NULL, oBadOption }
 };  };
Line 2257 
Line 2258 
                 intptr = &options->required_rsa_size;                  intptr = &options->required_rsa_size;
                 goto parse_int;                  goto parse_int;
   
           case oObscureKeystrokeTiming:
                   value = -1;
                   while ((arg = argv_next(&ac, &av)) != NULL) {
                           if (value != -1) {
                                   error("%s line %d: invalid arguments",
                                       filename, linenum);
                                   goto out;
                           }
                           if (strcmp(arg, "yes") == 0 ||
                               strcmp(arg, "true") == 0)
                                   value = SSH_KEYSTROKE_DEFAULT_INTERVAL_MS;
                           else if (strcmp(arg, "no") == 0 ||
                               strcmp(arg, "false") == 0)
                                   value = 0;
                           else if (strncmp(arg, "interval:", 9) == 0) {
                                   if ((errstr = atoi_err(arg + 9,
                                       &value)) != NULL) {
                                           error("%s line %d: integer value %s.",
                                               filename, linenum, errstr);
                                           goto out;
                                   }
                                   if (value <= 0 || value > 1000) {
                                           error("%s line %d: value out of range.",
                                               filename, linenum);
                                           goto out;
                                   }
                           } else {
                                   error("%s line %d: unsupported argument \"%s\"",
                                       filename, linenum, arg);
                                   goto out;
                           }
                   }
                   if (value == -1) {
                           error("%s line %d: missing argument",
                               filename, linenum);
                           goto out;
                   }
                   intptr = &options->obscure_keystroke_timing_interval;
                   if (*activep && *intptr == -1)
                           *intptr = value;
                   break;
   
         case oDeprecated:          case oDeprecated:
                 debug("%s line %d: Deprecated option \"%s\"",                  debug("%s line %d: Deprecated option \"%s\"",
                     filename, linenum, keyword);                      filename, linenum, keyword);
Line 2507 
Line 2550 
         options->known_hosts_command = NULL;          options->known_hosts_command = NULL;
         options->required_rsa_size = -1;          options->required_rsa_size = -1;
         options->enable_escape_commandline = -1;          options->enable_escape_commandline = -1;
           options->obscure_keystroke_timing_interval = -1;
         options->tag = NULL;          options->tag = NULL;
 }  }
   
Line 2701 
Line 2745 
                 options->required_rsa_size = SSH_RSA_MINIMUM_MODULUS_SIZE;                  options->required_rsa_size = SSH_RSA_MINIMUM_MODULUS_SIZE;
         if (options->enable_escape_commandline == -1)          if (options->enable_escape_commandline == -1)
                 options->enable_escape_commandline = 0;                  options->enable_escape_commandline = 0;
           if (options->obscure_keystroke_timing_interval == -1) {
                   options->obscure_keystroke_timing_interval =
                       SSH_KEYSTROKE_DEFAULT_INTERVAL_MS;
           }
   
         /* Expand KEX name lists */          /* Expand KEX name lists */
         all_cipher = cipher_alg_list(',', 0);          all_cipher = cipher_alg_list(',', 0);
Line 3243 
Line 3291 
 static void  static void
 dump_cfg_int(OpCodes code, int val)  dump_cfg_int(OpCodes code, int val)
 {  {
           if (code == oObscureKeystrokeTiming) {
                   if (val == 0) {
                           printf("%s no\n", lookup_opcode_name(code));
                           return;
                   } else if (val == SSH_KEYSTROKE_DEFAULT_INTERVAL_MS) {
                           printf("%s yes\n", lookup_opcode_name(code));
                           return;
                   }
                   /* FALLTHROUGH */
           }
         printf("%s %d\n", lookup_opcode_name(code), val);          printf("%s %d\n", lookup_opcode_name(code), val);
 }  }
   
Line 3393 
Line 3451 
         dump_cfg_int(oServerAliveCountMax, o->server_alive_count_max);          dump_cfg_int(oServerAliveCountMax, o->server_alive_count_max);
         dump_cfg_int(oServerAliveInterval, o->server_alive_interval);          dump_cfg_int(oServerAliveInterval, o->server_alive_interval);
         dump_cfg_int(oRequiredRSASize, o->required_rsa_size);          dump_cfg_int(oRequiredRSASize, o->required_rsa_size);
           dump_cfg_int(oObscureKeystrokeTiming,
               o->obscure_keystroke_timing_interval);
   
         /* String options */          /* String options */
         dump_cfg_string(oBindAddress, o->bind_address);          dump_cfg_string(oBindAddress, o->bind_address);

Legend:
Removed from v.1.380  
changed lines
  Added in v.1.381