1 /* $NetBSD: auth2.c,v 1.16 2018/04/06 18:58:59 christos Exp $ */ 2 /* $OpenBSD: auth2.c,v 1.145 2018/03/03 03:15:51 djm Exp $ */ 3 /* 4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include "includes.h" 28 __RCSID("$NetBSD: auth2.c,v 1.16 2018/04/06 18:58:59 christos Exp $"); 29 #include <sys/types.h> 30 #include <sys/stat.h> 31 #include <sys/uio.h> 32 33 #include <fcntl.h> 34 #include <limits.h> 35 #include <pwd.h> 36 #include <stdarg.h> 37 #include <string.h> 38 #include <unistd.h> 39 40 #include "atomicio.h" 41 #include "xmalloc.h" 42 #include "ssh2.h" 43 #include "packet.h" 44 #include "log.h" 45 #include "buffer.h" 46 #include "misc.h" 47 #include "servconf.h" 48 #include "compat.h" 49 #include "key.h" 50 #include "hostfile.h" 51 #include "auth.h" 52 #include "dispatch.h" 53 #include "pathnames.h" 54 #include "buffer.h" 55 #include "canohost.h" 56 #include "pfilter.h" 57 58 #ifdef GSSAPI 59 #include "ssh-gss.h" 60 #endif 61 62 #include "monitor_wrap.h" 63 #include "ssherr.h" 64 65 /* import */ 66 extern ServerOptions options; 67 extern u_char *session_id2; 68 extern u_int session_id2_len; 69 extern Buffer loginmsg; 70 71 /* methods */ 72 73 extern Authmethod method_none; 74 extern Authmethod method_pubkey; 75 extern Authmethod method_passwd; 76 extern Authmethod method_kbdint; 77 extern Authmethod method_hostbased; 78 #ifdef KRB5 79 extern Authmethod method_kerberos; 80 #endif 81 #ifdef GSSAPI 82 extern Authmethod method_gssapi; 83 #endif 84 85 static int log_flag = 0; 86 87 Authmethod *authmethods[] = { 88 &method_none, 89 &method_pubkey, 90 #ifdef GSSAPI 91 &method_gssapi, 92 #endif 93 &method_passwd, 94 &method_kbdint, 95 &method_hostbased, 96 #ifdef KRB5 97 &method_kerberos, 98 #endif 99 NULL 100 }; 101 102 /* protocol */ 103 104 static int input_service_request(int, u_int32_t, struct ssh *); 105 static int input_userauth_request(int, u_int32_t, struct ssh *); 106 107 /* helper */ 108 static Authmethod *authmethod_lookup(Authctxt *, const char *); 109 static char *authmethods_get(Authctxt *authctxt); 110 111 #define MATCH_NONE 0 /* method or submethod mismatch */ 112 #define MATCH_METHOD 1 /* method matches (no submethod specified) */ 113 #define MATCH_BOTH 2 /* method and submethod match */ 114 #define MATCH_PARTIAL 3 /* method matches, submethod can't be checked */ 115 static int list_starts_with(const char *, const char *, const char *); 116 117 char * 118 auth2_read_banner(void) 119 { 120 struct stat st; 121 char *banner = NULL; 122 size_t len, n; 123 int fd; 124 125 if ((fd = open(options.banner, O_RDONLY)) == -1) 126 return (NULL); 127 if (fstat(fd, &st) == -1) { 128 close(fd); 129 return (NULL); 130 } 131 if (st.st_size <= 0 || st.st_size > 1*1024*1024) { 132 close(fd); 133 return (NULL); 134 } 135 136 len = (size_t)st.st_size; /* truncate */ 137 banner = xmalloc(len + 1); 138 n = atomicio(read, fd, banner, len); 139 close(fd); 140 141 if (n != len) { 142 free(banner); 143 return (NULL); 144 } 145 banner[n] = '\0'; 146 147 return (banner); 148 } 149 150 static void 151 userauth_send_banner(const char *msg) 152 { 153 packet_start(SSH2_MSG_USERAUTH_BANNER); 154 packet_put_cstring(msg); 155 packet_put_cstring(""); /* language, unused */ 156 packet_send(); 157 debug("%s: sent", __func__); 158 } 159 160 static void 161 userauth_banner(void) 162 { 163 char *banner = NULL; 164 165 if (options.banner == NULL) 166 return; 167 168 if ((banner = PRIVSEP(auth2_read_banner())) == NULL) 169 goto done; 170 171 userauth_send_banner(banner); 172 done: 173 free(banner); 174 } 175 176 /* 177 * loop until authctxt->success == TRUE 178 */ 179 void 180 do_authentication2(Authctxt *authctxt) 181 { 182 struct ssh *ssh = active_state; /* XXX */ 183 ssh->authctxt = authctxt; /* XXX move to caller */ 184 ssh_dispatch_init(ssh, &dispatch_protocol_error); 185 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request); 186 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success); 187 ssh->authctxt = NULL; 188 } 189 190 /*ARGSUSED*/ 191 static int 192 input_service_request(int type, u_int32_t seq, struct ssh *ssh) 193 { 194 Authctxt *authctxt = ssh->authctxt; 195 u_int len; 196 int acceptit = 0; 197 char *service = packet_get_cstring(&len); 198 packet_check_eom(); 199 200 if (authctxt == NULL) 201 fatal("input_service_request: no authctxt"); 202 203 if (strcmp(service, "ssh-userauth") == 0) { 204 if (!authctxt->success) { 205 acceptit = 1; 206 /* now we can handle user-auth requests */ 207 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request); 208 } 209 } 210 /* XXX all other service requests are denied */ 211 212 if (acceptit) { 213 packet_start(SSH2_MSG_SERVICE_ACCEPT); 214 packet_put_cstring(service); 215 packet_send(); 216 packet_write_wait(); 217 } else { 218 debug("bad service request %s", service); 219 packet_disconnect("bad service request %s", service); 220 } 221 free(service); 222 return 0; 223 } 224 225 /*ARGSUSED*/ 226 static int 227 input_userauth_request(int type, u_int32_t seq, struct ssh *ssh) 228 { 229 Authctxt *authctxt = ssh->authctxt; 230 Authmethod *m = NULL; 231 char *user, *service, *method, *style = NULL; 232 int authenticated = 0; 233 234 if (authctxt == NULL) 235 fatal("input_userauth_request: no authctxt"); 236 237 user = packet_get_cstring(NULL); 238 service = packet_get_cstring(NULL); 239 method = packet_get_cstring(NULL); 240 debug("userauth-request for user %s service %s method %s", user, service, method); 241 if (!log_flag) { 242 logit("SSH: Server;Ltype: Authname;Remote: %s-%d;Name: %s", 243 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), user); 244 log_flag = 1; 245 } 246 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); 247 248 if ((style = strchr(user, ':')) != NULL) 249 *style++ = 0; 250 251 if (authctxt->attempt++ == 0) { 252 /* setup auth context */ 253 authctxt->pw = PRIVSEP(getpwnamallow(user)); 254 authctxt->user = xstrdup(user); 255 if (authctxt->pw && strcmp(service, "ssh-connection")==0) { 256 authctxt->valid = 1; 257 debug2("%s: setting up authctxt for %s", 258 __func__, user); 259 } else { 260 /* Invalid user, fake password information */ 261 authctxt->pw = fakepw(); 262 pfilter_notify(1); 263 } 264 #ifdef USE_PAM 265 if (options.use_pam) 266 PRIVSEP(start_pam(authctxt)); 267 #endif 268 ssh_packet_set_log_preamble(ssh, "%suser %s", 269 authctxt->valid ? "authenticating " : "invalid ", user); 270 setproctitle("%s%s", authctxt->valid ? user : "unknown", 271 use_privsep ? " [net]" : ""); 272 authctxt->service = xstrdup(service); 273 authctxt->style = style ? xstrdup(style) : NULL; 274 if (use_privsep) 275 mm_inform_authserv(service, style); 276 userauth_banner(); 277 if (auth2_setup_methods_lists(authctxt) != 0) 278 packet_disconnect("no authentication methods enabled"); 279 } else if (strcmp(user, authctxt->user) != 0 || 280 strcmp(service, authctxt->service) != 0) { 281 packet_disconnect("Change of username or service not allowed: " 282 "(%s,%s) -> (%s,%s)", 283 authctxt->user, authctxt->service, user, service); 284 } 285 /* reset state */ 286 auth2_challenge_stop(ssh); 287 288 #ifdef GSSAPI 289 /* XXX move to auth2_gssapi_stop() */ 290 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); 291 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); 292 #endif 293 294 auth2_authctxt_reset_info(authctxt); 295 authctxt->postponed = 0; 296 authctxt->server_caused_failure = 0; 297 298 /* try to authenticate user */ 299 m = authmethod_lookup(authctxt, method); 300 if (m != NULL && authctxt->failures < options.max_authtries) { 301 debug2("input_userauth_request: try method %s", method); 302 authenticated = m->userauth(ssh); 303 } 304 userauth_finish(ssh, authenticated, method, NULL); 305 306 free(service); 307 free(user); 308 free(method); 309 return 0; 310 } 311 312 void 313 userauth_finish(struct ssh *ssh, int authenticated, const char *method, 314 const char *submethod) 315 { 316 Authctxt *authctxt = ssh->authctxt; 317 char *methods; 318 int partial = 0; 319 320 if (!authctxt->valid && authenticated) 321 fatal("INTERNAL ERROR: authenticated invalid user %s", 322 authctxt->user); 323 if (authenticated && authctxt->postponed) 324 fatal("INTERNAL ERROR: authenticated and postponed"); 325 326 /* Special handling for root */ 327 if (authenticated && authctxt->pw->pw_uid == 0 && 328 !auth_root_allowed(ssh, method)) { 329 authenticated = 0; 330 #ifdef SSH_AUDIT_EVENTS 331 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED)); 332 #endif 333 } 334 335 #ifdef USE_PAM 336 if (options.use_pam && authenticated) { 337 if (!PRIVSEP(do_pam_account())) { 338 /* if PAM returned a message, send it to the user */ 339 if (buffer_len(&loginmsg) > 0) { 340 buffer_append(&loginmsg, "\0", 1); 341 userauth_send_banner((const char *)buffer_ptr(&loginmsg)); 342 packet_write_wait(); 343 } 344 fatal("Access denied for user %s by PAM account " 345 "configuration", authctxt->user); 346 } 347 } 348 #endif 349 350 if (authenticated && options.num_auth_methods != 0) { 351 if (!auth2_update_methods_lists(authctxt, method, submethod)) { 352 authenticated = 0; 353 partial = 1; 354 } 355 } 356 357 /* Log before sending the reply */ 358 auth_log(authctxt, authenticated, partial, method, submethod); 359 360 /* Update information exposed to session */ 361 if (authenticated || partial) 362 auth2_update_session_info(authctxt, method, submethod); 363 364 if (authctxt->postponed) 365 return; 366 367 if (authenticated == 1) { 368 /* turn off userauth */ 369 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); 370 packet_start(SSH2_MSG_USERAUTH_SUCCESS); 371 packet_send(); 372 packet_write_wait(); 373 /* now we can break out */ 374 authctxt->success = 1; 375 ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user); 376 } else { 377 /* Allow initial try of "none" auth without failure penalty */ 378 if (!partial && !authctxt->server_caused_failure && 379 (authctxt->attempt > 1 || strcmp(method, "none") != 0)) 380 authctxt->failures++; 381 if (authctxt->failures >= options.max_authtries) 382 auth_maxtries_exceeded(authctxt); 383 methods = authmethods_get(authctxt); 384 debug3("%s: failure partial=%d next methods=\"%s\"", __func__, 385 partial, methods); 386 packet_start(SSH2_MSG_USERAUTH_FAILURE); 387 packet_put_cstring(methods); 388 packet_put_char(partial); 389 packet_send(); 390 packet_write_wait(); 391 free(methods); 392 } 393 } 394 395 /* 396 * Checks whether method is allowed by at least one AuthenticationMethods 397 * methods list. Returns 1 if allowed, or no methods lists configured. 398 * 0 otherwise. 399 */ 400 int 401 auth2_method_allowed(Authctxt *authctxt, const char *method, 402 const char *submethod) 403 { 404 u_int i; 405 406 /* 407 * NB. authctxt->num_auth_methods might be zero as a result of 408 * auth2_setup_methods_lists(), so check the configuration. 409 */ 410 if (options.num_auth_methods == 0) 411 return 1; 412 for (i = 0; i < authctxt->num_auth_methods; i++) { 413 if (list_starts_with(authctxt->auth_methods[i], method, 414 submethod) != MATCH_NONE) 415 return 1; 416 } 417 return 0; 418 } 419 420 static char * 421 authmethods_get(Authctxt *authctxt) 422 { 423 Buffer b; 424 char *list; 425 u_int i; 426 427 buffer_init(&b); 428 for (i = 0; authmethods[i] != NULL; i++) { 429 if (strcmp(authmethods[i]->name, "none") == 0) 430 continue; 431 if (authmethods[i]->enabled == NULL || 432 *(authmethods[i]->enabled) == 0) 433 continue; 434 if (!auth2_method_allowed(authctxt, authmethods[i]->name, 435 NULL)) 436 continue; 437 if (buffer_len(&b) > 0) 438 buffer_append(&b, ",", 1); 439 buffer_append(&b, authmethods[i]->name, 440 strlen(authmethods[i]->name)); 441 } 442 if ((list = sshbuf_dup_string(&b)) == NULL) 443 fatal("%s: sshbuf_dup_string failed", __func__); 444 buffer_free(&b); 445 return list; 446 } 447 448 static Authmethod * 449 authmethod_lookup(Authctxt *authctxt, const char *name) 450 { 451 int i; 452 453 if (name != NULL) 454 for (i = 0; authmethods[i] != NULL; i++) 455 if (authmethods[i]->enabled != NULL && 456 *(authmethods[i]->enabled) != 0 && 457 strcmp(name, authmethods[i]->name) == 0 && 458 auth2_method_allowed(authctxt, 459 authmethods[i]->name, NULL)) 460 return authmethods[i]; 461 debug2("Unrecognized authentication method name: %s", 462 name ? name : "NULL"); 463 return NULL; 464 } 465 466 /* 467 * Check a comma-separated list of methods for validity. Is need_enable is 468 * non-zero, then also require that the methods are enabled. 469 * Returns 0 on success or -1 if the methods list is invalid. 470 */ 471 int 472 auth2_methods_valid(const char *_methods, int need_enable) 473 { 474 char *methods, *omethods, *method, *p; 475 u_int i, found; 476 int ret = -1; 477 478 if (*_methods == '\0') { 479 error("empty authentication method list"); 480 return -1; 481 } 482 omethods = methods = xstrdup(_methods); 483 while ((method = strsep(&methods, ",")) != NULL) { 484 for (found = i = 0; !found && authmethods[i] != NULL; i++) { 485 if ((p = strchr(method, ':')) != NULL) 486 *p = '\0'; 487 if (strcmp(method, authmethods[i]->name) != 0) 488 continue; 489 if (need_enable) { 490 if (authmethods[i]->enabled == NULL || 491 *(authmethods[i]->enabled) == 0) { 492 error("Disabled method \"%s\" in " 493 "AuthenticationMethods list \"%s\"", 494 method, _methods); 495 goto out; 496 } 497 } 498 found = 1; 499 break; 500 } 501 if (!found) { 502 error("Unknown authentication method \"%s\" in list", 503 method); 504 goto out; 505 } 506 } 507 ret = 0; 508 out: 509 free(omethods); 510 return ret; 511 } 512 513 /* 514 * Prune the AuthenticationMethods supplied in the configuration, removing 515 * any methods lists that include disabled methods. Note that this might 516 * leave authctxt->num_auth_methods == 0, even when multiple required auth 517 * has been requested. For this reason, all tests for whether multiple is 518 * enabled should consult options.num_auth_methods directly. 519 */ 520 int 521 auth2_setup_methods_lists(Authctxt *authctxt) 522 { 523 u_int i; 524 525 if (options.num_auth_methods == 0) 526 return 0; 527 debug3("%s: checking methods", __func__); 528 authctxt->auth_methods = xcalloc(options.num_auth_methods, 529 sizeof(*authctxt->auth_methods)); 530 authctxt->num_auth_methods = 0; 531 for (i = 0; i < options.num_auth_methods; i++) { 532 if (auth2_methods_valid(options.auth_methods[i], 1) != 0) { 533 logit("Authentication methods list \"%s\" contains " 534 "disabled method, skipping", 535 options.auth_methods[i]); 536 continue; 537 } 538 debug("authentication methods list %d: %s", 539 authctxt->num_auth_methods, options.auth_methods[i]); 540 authctxt->auth_methods[authctxt->num_auth_methods++] = 541 xstrdup(options.auth_methods[i]); 542 } 543 if (authctxt->num_auth_methods == 0) { 544 error("No AuthenticationMethods left after eliminating " 545 "disabled methods"); 546 return -1; 547 } 548 return 0; 549 } 550 551 static int 552 list_starts_with(const char *methods, const char *method, 553 const char *submethod) 554 { 555 size_t l = strlen(method); 556 int match; 557 const char *p; 558 559 if (strncmp(methods, method, l) != 0) 560 return MATCH_NONE; 561 p = methods + l; 562 match = MATCH_METHOD; 563 if (*p == ':') { 564 if (!submethod) 565 return MATCH_PARTIAL; 566 l = strlen(submethod); 567 p += 1; 568 if (strncmp(submethod, p, l)) 569 return MATCH_NONE; 570 p += l; 571 match = MATCH_BOTH; 572 } 573 if (*p != ',' && *p != '\0') 574 return MATCH_NONE; 575 return match; 576 } 577 578 /* 579 * Remove method from the start of a comma-separated list of methods. 580 * Returns 0 if the list of methods did not start with that method or 1 581 * if it did. 582 */ 583 static int 584 remove_method(char **methods, const char *method, const char *submethod) 585 { 586 char *omethods = *methods, *p; 587 size_t l = strlen(method); 588 int match; 589 590 match = list_starts_with(omethods, method, submethod); 591 if (match != MATCH_METHOD && match != MATCH_BOTH) 592 return 0; 593 p = omethods + l; 594 if (submethod && match == MATCH_BOTH) 595 p += 1 + strlen(submethod); /* include colon */ 596 if (*p == ',') 597 p++; 598 *methods = xstrdup(p); 599 free(omethods); 600 return 1; 601 } 602 603 /* 604 * Called after successful authentication. Will remove the successful method 605 * from the start of each list in which it occurs. If it was the last method 606 * in any list, then authentication is deemed successful. 607 * Returns 1 if the method completed any authentication list or 0 otherwise. 608 */ 609 int 610 auth2_update_methods_lists(Authctxt *authctxt, const char *method, 611 const char *submethod) 612 { 613 u_int i, found = 0; 614 615 debug3("%s: updating methods list after \"%s\"", __func__, method); 616 for (i = 0; i < authctxt->num_auth_methods; i++) { 617 if (!remove_method(&(authctxt->auth_methods[i]), method, 618 submethod)) 619 continue; 620 found = 1; 621 if (*authctxt->auth_methods[i] == '\0') { 622 debug2("authentication methods list %d complete", i); 623 return 1; 624 } 625 debug3("authentication methods list %d remaining: \"%s\"", 626 i, authctxt->auth_methods[i]); 627 } 628 /* This should not happen, but would be bad if it did */ 629 if (!found) 630 fatal("%s: method not in AuthenticationMethods", __func__); 631 return 0; 632 } 633 634 /* Reset method-specific information */ 635 void auth2_authctxt_reset_info(Authctxt *authctxt) 636 { 637 sshkey_free(authctxt->auth_method_key); 638 free(authctxt->auth_method_info); 639 authctxt->auth_method_key = NULL; 640 authctxt->auth_method_info = NULL; 641 } 642 643 /* Record auth method-specific information for logs */ 644 void 645 auth2_record_info(Authctxt *authctxt, const char *fmt, ...) 646 { 647 va_list ap; 648 int i; 649 650 free(authctxt->auth_method_info); 651 authctxt->auth_method_info = NULL; 652 653 va_start(ap, fmt); 654 i = vasprintf(&authctxt->auth_method_info, fmt, ap); 655 va_end(ap); 656 657 if (i < 0 || authctxt->auth_method_info == NULL) 658 fatal("%s: vasprintf failed", __func__); 659 } 660 661 /* 662 * Records a public key used in authentication. This is used for logging 663 * and to ensure that the same key is not subsequently accepted again for 664 * multiple authentication. 665 */ 666 void 667 auth2_record_key(Authctxt *authctxt, int authenticated, 668 const struct sshkey *key) 669 { 670 struct sshkey **tmp, *dup; 671 int r; 672 673 if ((r = sshkey_demote(key, &dup)) != 0) 674 fatal("%s: copy key: %s", __func__, ssh_err(r)); 675 sshkey_free(authctxt->auth_method_key); 676 authctxt->auth_method_key = dup; 677 678 if (!authenticated) 679 return; 680 681 /* If authenticated, make sure we don't accept this key again */ 682 if ((r = sshkey_demote(key, &dup)) != 0) 683 fatal("%s: copy key: %s", __func__, ssh_err(r)); 684 if (authctxt->nprev_keys >= INT_MAX || 685 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys, 686 authctxt->nprev_keys + 1, sizeof(*authctxt->prev_keys))) == NULL) 687 fatal("%s: reallocarray failed", __func__); 688 authctxt->prev_keys = tmp; 689 authctxt->prev_keys[authctxt->nprev_keys] = dup; 690 authctxt->nprev_keys++; 691 692 } 693 694 /* Checks whether a key has already been previously used for authentication */ 695 int 696 auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key) 697 { 698 u_int i; 699 char *fp; 700 701 for (i = 0; i < authctxt->nprev_keys; i++) { 702 if (sshkey_equal_public(key, authctxt->prev_keys[i])) { 703 fp = sshkey_fingerprint(authctxt->prev_keys[i], 704 options.fingerprint_hash, SSH_FP_DEFAULT); 705 debug3("%s: key already used: %s %s", __func__, 706 sshkey_type(authctxt->prev_keys[i]), 707 fp == NULL ? "UNKNOWN" : fp); 708 free(fp); 709 return 1; 710 } 711 } 712 return 0; 713 } 714 715 /* 716 * Updates authctxt->session_info with details of authentication. Should be 717 * whenever an authentication method succeeds. 718 */ 719 void 720 auth2_update_session_info(Authctxt *authctxt, const char *method, 721 const char *submethod) 722 { 723 int r; 724 725 if (authctxt->session_info == NULL) { 726 if ((authctxt->session_info = sshbuf_new()) == NULL) 727 fatal("%s: sshbuf_new", __func__); 728 } 729 730 /* Append method[/submethod] */ 731 if ((r = sshbuf_putf(authctxt->session_info, "%s%s%s", 732 method, submethod == NULL ? "" : "/", 733 submethod == NULL ? "" : submethod)) != 0) 734 fatal("%s: append method: %s", __func__, ssh_err(r)); 735 736 /* Append key if present */ 737 if (authctxt->auth_method_key != NULL) { 738 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 || 739 (r = sshkey_format_text(authctxt->auth_method_key, 740 authctxt->session_info)) != 0) 741 fatal("%s: append key: %s", __func__, ssh_err(r)); 742 } 743 744 if (authctxt->auth_method_info != NULL) { 745 /* Ensure no ambiguity here */ 746 if (strchr(authctxt->auth_method_info, '\n') != NULL) 747 fatal("%s: auth_method_info contains \\n", __func__); 748 if ((r = sshbuf_put_u8(authctxt->session_info, ' ')) != 0 || 749 (r = sshbuf_putf(authctxt->session_info, "%s", 750 authctxt->auth_method_info)) != 0) { 751 fatal("%s: append method info: %s", 752 __func__, ssh_err(r)); 753 } 754 } 755 if ((r = sshbuf_put_u8(authctxt->session_info, '\n')) != 0) 756 fatal("%s: append: %s", __func__, ssh_err(r)); 757 } 758 759