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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.19 and 1.31

version 1.19, 2000/04/26 20:56:29 version 1.31, 2000/09/07 20:27:54
Line 2 
Line 2 
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
  *                    All rights reserved   *                    All rights reserved
  * Created: Mon Mar 27 02:26:40 1995 ylo  
  * Identity and host key generation and maintenance.   * Identity and host key generation and maintenance.
    *
    * 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"  #include "includes.h"
 RCSID("$Id$");  RCSID("$OpenBSD$");
   
 #include <openssl/evp.h>  #include <openssl/evp.h>
 #include <openssl/pem.h>  #include <openssl/pem.h>
Line 16 
Line 21 
   
 #include "ssh.h"  #include "ssh.h"
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "fingerprint.h"  
 #include "key.h"  #include "key.h"
 #include "rsa.h"  #include "rsa.h"
 #include "dsa.h"  #include "dsa.h"
Line 72 
Line 76 
 {  {
         char buf[1024];          char buf[1024];
         snprintf(identity_file, sizeof(identity_file), "%s/%s",          snprintf(identity_file, sizeof(identity_file), "%s/%s",
                  pw->pw_dir, SSH_CLIENT_IDENTITY);              pw->pw_dir,
               dsa_mode ? SSH_CLIENT_ID_DSA: SSH_CLIENT_IDENTITY);
         printf("%s (%s): ", prompt, identity_file);          printf("%s (%s): ", prompt, identity_file);
         fflush(stdout);          fflush(stdout);
         if (fgets(buf, sizeof(buf), stdin) == NULL)          if (fgets(buf, sizeof(buf), stdin) == NULL)
Line 122 
Line 127 
                 exit(1);                  exit(1);
         }          }
         dsa_make_key_blob(k, &blob, &len);          dsa_make_key_blob(k, &blob, &len);
         fprintf(stdout, SSH_COM_MAGIC_BEGIN "\n");          fprintf(stdout, "%s\n", SSH_COM_MAGIC_BEGIN);
         fprintf(stdout,          fprintf(stdout,
             "Comment: \"%d-bit DSA, converted from openssh by %s@%s\"\n",              "Comment: \"%d-bit DSA, converted from openssh by %s@%s\"\n",
             BN_num_bits(k->dsa->p),              BN_num_bits(k->dsa->p),
             pw->pw_name, hostname);              pw->pw_name, hostname);
         dump_base64(stdout, blob, len);          dump_base64(stdout, blob, len);
         fprintf(stdout, SSH_COM_MAGIC_END "\n");          fprintf(stdout, "%s\n", SSH_COM_MAGIC_END);
         key_free(k);          key_free(k);
           xfree(blob);
         exit(0);          exit(0);
 }  }
   
Line 142 
Line 148 
         char blob[8096];          char blob[8096];
         char encoded[8096];          char encoded[8096];
         struct stat st;          struct stat st;
           int escaped = 0;
         FILE *fp;          FILE *fp;
   
         if (!have_identity)          if (!have_identity)
Line 157 
Line 164 
         }          }
         encoded[0] = '\0';          encoded[0] = '\0';
         while (fgets(line, sizeof(line), fp)) {          while (fgets(line, sizeof(line), fp)) {
                   if (!(p = strchr(line, '\n'))) {
                           fprintf(stderr, "input line too long.\n");
                           exit(1);
                   }
                   if (p > line && p[-1] == '\\')
                           escaped++;
                 if (strncmp(line, "----", 4) == 0 ||                  if (strncmp(line, "----", 4) == 0 ||
                     strstr(line, ": ") != NULL) {                      strstr(line, ": ") != NULL) {
                         fprintf(stderr, "ignore: %s", line);                          fprintf(stderr, "ignore: %s", line);
                         continue;                          continue;
                 }                  }
                 if (!(p = strchr(line, '\n'))) {                  if (escaped) {
                         fprintf(stderr, "input line too long.\n");                          escaped--;
                         exit(1);                          fprintf(stderr, "escaped: %s", line);
                           continue;
                 }                  }
                 *p = '\0';                  *p = '\0';
                 strlcat(encoded, line, sizeof(encoded));                  strlcat(encoded, line, sizeof(encoded));
Line 206 
Line 220 
         if (!key_write(k, stdout))          if (!key_write(k, stdout))
                 fprintf(stderr, "key_write failed");                  fprintf(stderr, "key_write failed");
         key_free(k);          key_free(k);
           xfree(blob);
         fprintf(stdout, "\n");          fprintf(stdout, "\n");
         exit(0);          exit(0);
 }  }
Line 213 
Line 228 
 void  void
 do_fingerprint(struct passwd *pw)  do_fingerprint(struct passwd *pw)
 {  {
           /* XXX RSA1 only */
   
         FILE *f;          FILE *f;
         BIGNUM *e, *n;  
         Key *public;          Key *public;
         char *comment = NULL, *cp, *ep, line[16*1024];          char *comment = NULL, *cp, *ep, line[16*1024];
         int i, skip = 0, num = 1, invalid = 1;          int i, skip = 0, num = 1, invalid = 1;
Line 234 
Line 250 
                 key_free(public);                  key_free(public);
                 exit(0);                  exit(0);
         }          }
         key_free(public);  
   
         /* XXX */  
         f = fopen(identity_file, "r");          f = fopen(identity_file, "r");
         if (f != NULL) {          if (f != NULL) {
                 n = BN_new();  
                 e = BN_new();  
                 while (fgets(line, sizeof(line), f)) {                  while (fgets(line, sizeof(line), f)) {
                         i = strlen(line) - 1;                          i = strlen(line) - 1;
                         if (line[i] != '\n') {                          if (line[i] != '\n') {
Line 275 
Line 287 
                                 *cp++ = '\0';                                  *cp++ = '\0';
                         }                          }
                         ep = cp;                          ep = cp;
                         if (auth_rsa_read_key(&cp, &ignore, e, n)) {                          if (auth_rsa_read_key(&cp, &ignore, public->rsa->e, public->rsa->n)) {
                                 invalid = 0;                                  invalid = 0;
                                 comment = *cp ? cp : comment;                                  comment = *cp ? cp : comment;
                                 printf("%d %s %s\n", BN_num_bits(n),                                  printf("%d %s %s\n", key_size(public),
                                     fingerprint(e, n),                                      key_fingerprint(public),
                                     comment ? comment : "no comment");                                      comment ? comment : "no comment");
                         }                          }
                 }                  }
                 BN_free(e);  
                 BN_free(n);  
                 fclose(f);                  fclose(f);
         }          }
           key_free(public);
         if (invalid) {          if (invalid) {
                 printf("%s is not a valid key file.\n", identity_file);                  printf("%s is not a valid key file.\n", identity_file);
                 exit(1);                  exit(1);
Line 485 
Line 496 
 void  void
 usage(void)  usage(void)
 {  {
         printf("ssh-keygen version %s\n", SSH_VERSION);          printf("Usage: %s [-lpqxXydc] [-b bits] [-f file] [-C comment] [-N new-pass] [-P pass]\n", __progname);
         printf("Usage: %s [-b bits] [-p] [-c] [-l] [-x] [-X] [-y] [-f file] [-P pass] [-N new-pass] [-C comment]\n", __progname);  
         exit(1);          exit(1);
 }  }
   
Line 506 
Line 516 
         extern int optind;          extern int optind;
         extern char *optarg;          extern char *optarg;
   
         OpenSSL_add_all_algorithms();          SSLeay_add_all_algorithms();
   
         /* we need this for the home * directory.  */          /* we need this for the home * directory.  */
         pw = getpwuid(getuid());          pw = getpwuid(getuid());
Line 519 
Line 529 
                 exit(1);                  exit(1);
         }          }
   
         while ((opt = getopt(ac, av, "dqpclxXyb:f:P:N:C:")) != EOF) {          while ((opt = getopt(ac, av, "dqpclRxXyb:f:P:N:C:")) != EOF) {
                 switch (opt) {                  switch (opt) {
                 case 'b':                  case 'b':
                         bits = atoi(optarg);                          bits = atoi(optarg);
Line 562 
Line 572 
                         quiet = 1;                          quiet = 1;
                         break;                          break;
   
                   case 'R':
                           if (rsa_alive() == 0)
                                   exit(1);
                           else
                                   exit(0);
                           break;
   
                 case 'x':                  case 'x':
                         convert_to_ssh2 = 1;                          convert_to_ssh2 = 1;
                         break;                          break;
Line 637 
Line 654 
         snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, SSH_USER_DIR);          snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, SSH_USER_DIR);
         if (strstr(identity_file, dotsshdir) != NULL &&          if (strstr(identity_file, dotsshdir) != NULL &&
             stat(dotsshdir, &st) < 0) {              stat(dotsshdir, &st) < 0) {
                 if (mkdir(dotsshdir, 0755) < 0)                  if (mkdir(dotsshdir, 0700) < 0)
                         error("Could not create directory '%s'.", dotsshdir);                          error("Could not create directory '%s'.", dotsshdir);
                 else if (!quiet)                  else if (!quiet)
                         printf("Created directory '%s'.\n", dotsshdir);                          printf("Created directory '%s'.\n", dotsshdir);

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.31