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

Diff for /src/usr.bin/openssl/passwd.c between version 1.2 and 1.3

version 1.2, 2014/10/22 13:54:03 version 1.3, 2015/01/05 15:25:39
Line 40 
Line 40 
     char *passwd, BIO * out, int quiet, int table, int reverse,      char *passwd, BIO * out, int quiet, int table, int reverse,
     size_t pw_maxlen, int usecrypt, int use1, int useapr1);      size_t pw_maxlen, int usecrypt, int use1, int useapr1);
   
 /* -crypt        - standard Unix password algorithm (default)  static struct {
  * -1            - MD5-based password algorithm          char *infile;
  * -apr1         - MD5-based password algorithm, Apache variant          int in_stdin;
  * -salt string  - salt          int noverify;
  * -in file      - read passwords from file          int quiet;
  * -stdin        - read passwords from stdin          int reverse;
  * -noverify     - never verify when reading password from terminal          char *salt;
  * -quiet        - no warnings          int table;
  * -table        - format output as table          int use1;
  * -reverse      - switch table columns          int useapr1;
  */          int usecrypt;
   } passwd_config;
   
   static struct option passwd_options[] = {
   #ifndef NO_MD5CRYPT_1
           {
                   .name = "1",
                   .desc = "Use MD5 based BSD password algorithm 1",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.use1,
           },
           {
                   .name = "apr1",
                   .desc = "Use apr1 algorithm (Apache variant of BSD algorithm)",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.useapr1,
           },
   #endif
   #ifndef OPENSSL_NO_DES
           {
                   .name = "crypt",
                   .desc = "Use crypt algorithm (default)",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.usecrypt,
           },
   #endif
           {
                   .name = "in",
                   .argname = "file",
                   .desc = "Read passwords from specified file",
                   .type = OPTION_ARG,
                   .opt.arg = &passwd_config.infile,
           },
           {
                   .name = "noverify",
                   .desc = "Do not verify password",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.noverify,
           },
           {
                   .name = "quiet",
                   .desc = "Do not output warnings",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.quiet,
           },
           {
                   .name = "reverse",
                   .desc = "Reverse table columns (requires -table)",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.reverse,
           },
           {
                   .name = "salt",
                   .argname = "string",
                   .desc = "Use specified salt",
                   .type = OPTION_ARG,
                   .opt.arg = &passwd_config.salt,
           },
           {
                   .name = "stdin",
                   .desc = "Read passwords from stdin",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.in_stdin,
           },
           {
                   .name = "table",
                   .desc = "Output cleartext and hashed passwords (tab separated)",
                   .type = OPTION_FLAG,
                   .opt.flag = &passwd_config.table,
           },
           { NULL },
   };
   
   static void
   passwd_usage(void)
   {
           fprintf(stderr, "usage: passwd [-1 | -apr1 | -crypt] [-in file] "
               "[-noverify] [-quiet]\n"
               "    [-reverse] [-salt string] [-stdin] [-table] [password]\n\n");
           options_usage(passwd_options);
   }
   
 int passwd_main(int, char **);  int passwd_main(int, char **);
   
 int  int
 passwd_main(int argc, char **argv)  passwd_main(int argc, char **argv)
 {  {
         int ret = 1;          char *passwd = NULL, **passwds = NULL;
         char *infile = NULL;  
         int in_stdin = 0;  
         int in_noverify = 0;  
         char *salt = NULL, *passwd = NULL, **passwds = NULL;  
         char *salt_malloc = NULL, *passwd_malloc = NULL;          char *salt_malloc = NULL, *passwd_malloc = NULL;
         size_t passwd_malloc_size = 0;          size_t passwd_malloc_size = 0;
         int pw_source_defined = 0;  
         BIO *in = NULL, *out = NULL;          BIO *in = NULL, *out = NULL;
         int i, badopt, opt_done;          int badopt = 0;
         int passed_salt = 0, quiet = 0, table = 0, reverse = 0;          int passed_salt = 0;
         int usecrypt = 0, use1 = 0, useapr1 = 0;  
         size_t pw_maxlen = 0;          size_t pw_maxlen = 0;
           int argsused;
           int ret = 1;
   
         out = BIO_new(BIO_s_file());          memset(&passwd_config, 0, sizeof(passwd_config));
         if (out == NULL)  
                 goto err;  
         BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);  
   
         badopt = 0, opt_done = 0;          if (options_parse(argc, argv, passwd_options, NULL, &argsused) != 0) {
         i = 0;                  passwd_usage();
         while (!badopt && !opt_done && argv[++i] != NULL) {                  goto err;
                 if (strcmp(argv[i], "-crypt") == 0)  
                         usecrypt = 1;  
                 else if (strcmp(argv[i], "-1") == 0)  
                         use1 = 1;  
                 else if (strcmp(argv[i], "-apr1") == 0)  
                         useapr1 = 1;  
                 else if (strcmp(argv[i], "-salt") == 0) {  
                         if ((argv[i + 1] != NULL) && (salt == NULL)) {  
                                 passed_salt = 1;  
                                 salt = argv[++i];  
                         } else  
                                 badopt = 1;  
                 } else if (strcmp(argv[i], "-in") == 0) {  
                         if ((argv[i + 1] != NULL) && !pw_source_defined) {  
                                 pw_source_defined = 1;  
                                 infile = argv[++i];  
                         } else  
                                 badopt = 1;  
                 } else if (strcmp(argv[i], "-stdin") == 0) {  
                         if (!pw_source_defined) {  
                                 pw_source_defined = 1;  
                                 in_stdin = 1;  
                         } else  
                                 badopt = 1;  
                 } else if (strcmp(argv[i], "-noverify") == 0)  
                         in_noverify = 1;  
                 else if (strcmp(argv[i], "-quiet") == 0)  
                         quiet = 1;  
                 else if (strcmp(argv[i], "-table") == 0)  
                         table = 1;  
                 else if (strcmp(argv[i], "-reverse") == 0)  
                         reverse = 1;  
                 else if (argv[i][0] == '-')  
                         badopt = 1;  
                 else if (!pw_source_defined)  
                         /* non-option arguments, use as passwords */  
                 {  
                         pw_source_defined = 1;  
                         passwds = &argv[i];  
                         opt_done = 1;  
                 } else  
                         badopt = 1;  
         }          }
   
         if (!usecrypt && !use1 && !useapr1)     /* use default */          if (argsused < argc)
                 usecrypt = 1;                  passwds = &argv[argsused];
         if (usecrypt + use1 + useapr1 > 1)      /* conflict */          if (passwd_config.salt != NULL)
                 badopt = 1;                  passed_salt = 1;
   
         /* reject unsupported algorithms */          if (!passwd_config.usecrypt && !passwd_config.use1 &&
               !passwd_config.useapr1)
                   passwd_config.usecrypt = 1;     /* use default */
           if (passwd_config.usecrypt + passwd_config.use1 +
               passwd_config.useapr1 > 1)
                   badopt = 1;     /* conflicting options */
   
           /* Reject unsupported algorithms */
 #ifdef OPENSSL_NO_DES  #ifdef OPENSSL_NO_DES
         if (usecrypt)          if (passwd_config.usecrypt)
                 badopt = 1;                  badopt = 1;
 #endif  #endif
 #ifdef NO_MD5CRYPT_1  #ifdef NO_MD5CRYPT_1
         if (use1 || useapr1)          if (passwd_config.use1 || passwd_config.useapr1)
                 badopt = 1;                  badopt = 1;
 #endif  #endif
   
         if (badopt) {          if (badopt) {
                 BIO_printf(bio_err, "Usage: passwd [options] [passwords]\n");                  passwd_usage();
                 BIO_printf(bio_err, "where options are\n");  
 #ifndef OPENSSL_NO_DES  
                 BIO_printf(bio_err, "-crypt             standard Unix password algorithm (default)\n");  
 #endif  
 #ifndef NO_MD5CRYPT_1  
                 BIO_printf(bio_err, "-1                 MD5-based password algorithm\n");  
                 BIO_printf(bio_err, "-apr1              MD5-based password algorithm, Apache variant\n");  
 #endif  
                 BIO_printf(bio_err, "-salt string       use provided salt\n");  
                 BIO_printf(bio_err, "-in file           read passwords from file\n");  
                 BIO_printf(bio_err, "-stdin             read passwords from stdin\n");  
                 BIO_printf(bio_err, "-noverify          never verify when reading password from terminal\n");  
                 BIO_printf(bio_err, "-quiet             no warnings\n");  
                 BIO_printf(bio_err, "-table             format output as table\n");  
                 BIO_printf(bio_err, "-reverse           switch table columns\n");  
   
                 goto err;                  goto err;
         }          }
         if ((infile != NULL) || in_stdin) {  
                 in = BIO_new(BIO_s_file());          if ((out = BIO_new(BIO_s_file())) == NULL)
                 if (in == NULL)                  goto err;
           BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
   
           if (passwd_config.infile != NULL || passwd_config.in_stdin) {
                   if ((in = BIO_new(BIO_s_file())) == NULL)
                         goto err;                          goto err;
                 if (infile != NULL) {                  if (passwd_config.infile != NULL) {
                         assert(in_stdin == 0);                          assert(passwd_config.in_stdin == 0);
                         if (BIO_read_filename(in, infile) <= 0)                          if (BIO_read_filename(in, passwd_config.infile) <= 0)
                                 goto err;                                  goto err;
                 } else {                  } else {
                         assert(in_stdin);                          assert(passwd_config.in_stdin);
                         BIO_set_fp(in, stdin, BIO_NOCLOSE);                          BIO_set_fp(in, stdin, BIO_NOCLOSE);
                 }                  }
         }          }
         if (usecrypt)          if (passwd_config.usecrypt)
                 pw_maxlen = 8;                  pw_maxlen = 8;
         else if (use1 || useapr1)          else if (passwd_config.use1 || passwd_config.useapr1)
                 pw_maxlen = 256;/* arbitrary limit, should be enough for most                  pw_maxlen = 256;/* arbitrary limit, should be enough for most
                                  * passwords */                                   * passwords */
   
Line 186 
Line 212 
                 if (passwd_malloc == NULL)                  if (passwd_malloc == NULL)
                         goto err;                          goto err;
         }          }
         if ((in == NULL) && (passwds == NULL)) {          if (in == NULL && passwds == NULL) {
                 /* build a null-terminated list */                  /* build a null-terminated list */
                 static char *passwds_static[2] = {NULL, NULL};                  static char *passwds_static[2] = {NULL, NULL};
   
                 passwds = passwds_static;                  passwds = passwds_static;
                 if (in == NULL)                  if (in == NULL)
                         if (EVP_read_pw_string(passwd_malloc, passwd_malloc_size, "Password: ", !(passed_salt || in_noverify)) != 0)                          if (EVP_read_pw_string(passwd_malloc,
                               passwd_malloc_size, "Password: ",
                               !(passed_salt || passwd_config.noverify)) != 0)
                                 goto err;                                  goto err;
                 passwds[0] = passwd_malloc;                  passwds[0] = passwd_malloc;
         }          }
Line 200 
Line 228 
                 assert(passwds != NULL);                  assert(passwds != NULL);
                 assert(*passwds != NULL);                  assert(*passwds != NULL);
   
                 do {            /* loop over list of passwords */                  do {    /* loop over list of passwords */
                         passwd = *passwds++;                          passwd = *passwds++;
                         if (!do_passwd(passed_salt, &salt, &salt_malloc, passwd, out,                          if (!do_passwd(passed_salt, &passwd_config.salt,
                                 quiet, table, reverse, pw_maxlen, usecrypt, use1, useapr1))                              &salt_malloc, passwd, out, passwd_config.quiet,
                               passwd_config.table, passwd_config.reverse,
                               pw_maxlen, passwd_config.usecrypt,
                               passwd_config.use1, passwd_config.useapr1))
                                 goto err;                                  goto err;
                 }                  } while (*passwds != NULL);
                 while (*passwds != NULL);          } else {
         } else  
                 /* in != NULL */  
         {  
                 int done;                  int done;
   
                 assert(passwd != NULL);                  assert(passwd != NULL);
Line 227 
Line 255 
                                         while ((r > 0) && (!strchr(trash, '\n')));                                          while ((r > 0) && (!strchr(trash, '\n')));
                                 }                                  }
   
                                 if (!do_passwd(passed_salt, &salt, &salt_malloc, passwd, out,                                  if (!do_passwd(passed_salt, &passwd_config.salt,
                                         quiet, table, reverse, pw_maxlen, usecrypt, use1, useapr1))                                      &salt_malloc, passwd, out,
                                       passwd_config.quiet, passwd_config.table,
                                       passwd_config.reverse, pw_maxlen,
                                       passwd_config.usecrypt, passwd_config.use1,
                                       passwd_config.useapr1))
                                         goto err;                                          goto err;
                         }                          }
                         done = (r <= 0);                          done = (r <= 0);
                 }                  } while (!done);
                 while (!done);  
         }          }
         ret = 0;          ret = 0;
   
 err:  err:
         ERR_print_errors(bio_err);          ERR_print_errors(bio_err);
   
         free(salt_malloc);          free(salt_malloc);
         free(passwd_malloc);          free(passwd_malloc);
   
         BIO_free(in);          BIO_free(in);
         if (out)          BIO_free_all(out);
                 BIO_free_all(out);  
   
         return (ret);          return (ret);
 }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3