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

Diff for /src/usr.bin/ssh/auth2-pubkey.c between version 1.78 and 1.79

version 1.78, 2018/06/01 03:33:53 version 1.79, 2018/06/06 18:29:18
Line 316 
Line 316 
 process_principals(struct ssh *ssh, FILE *f, const char *file,  process_principals(struct ssh *ssh, FILE *f, const char *file,
     const struct sshkey_cert *cert, struct sshauthopt **authoptsp)      const struct sshkey_cert *cert, struct sshauthopt **authoptsp)
 {  {
         char loc[256], line[SSH_MAX_PUBKEY_BYTES], *cp, *ep;          char loc[256], *line = NULL, *cp, *ep;
           size_t linesize = 0;
         u_long linenum = 0;          u_long linenum = 0;
         u_int found_principal = 0;          u_int found_principal = 0;
   
         if (authoptsp != NULL)          if (authoptsp != NULL)
                 *authoptsp = NULL;                  *authoptsp = NULL;
   
         while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {          while (getline(&line, &linesize, f) != -1) {
                   linenum++;
                 /* Always consume entire input */                  /* Always consume entire input */
                 if (found_principal)                  if (found_principal)
                         continue;                          continue;
Line 341 
Line 343 
                 if (check_principals_line(ssh, cp, cert, loc, authoptsp) == 0)                  if (check_principals_line(ssh, cp, cert, loc, authoptsp) == 0)
                         found_principal = 1;                          found_principal = 1;
         }          }
           free(line);
         return found_principal;          return found_principal;
 }  }
   
Line 684 
Line 687 
 check_authkeys_file(struct ssh *ssh, struct passwd *pw, FILE *f,  check_authkeys_file(struct ssh *ssh, struct passwd *pw, FILE *f,
     char *file, struct sshkey *key, struct sshauthopt **authoptsp)      char *file, struct sshkey *key, struct sshauthopt **authoptsp)
 {  {
         char *cp, line[SSH_MAX_PUBKEY_BYTES], loc[256];          char *cp, *line = NULL, loc[256];
           size_t linesize = 0;
         int found_key = 0;          int found_key = 0;
         u_long linenum = 0;          u_long linenum = 0;
   
         if (authoptsp != NULL)          if (authoptsp != NULL)
                 *authoptsp = NULL;                  *authoptsp = NULL;
   
         while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {          while (getline(&line, &linesize, f) != -1) {
                   linenum++;
                 /* Always consume entire file */                  /* Always consume entire file */
                 if (found_key)                  if (found_key)
                         continue;                          continue;
Line 705 
Line 710 
                 if (check_authkey_line(ssh, pw, key, cp, loc, authoptsp) == 0)                  if (check_authkey_line(ssh, pw, key, cp, loc, authoptsp) == 0)
                         found_key = 1;                          found_key = 1;
         }          }
           free(line);
         return found_key;          return found_key;
 }  }
   

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79