Ben Lindstrom | a574cda | 2002-05-15 16:16:14 +0000 | [diff] [blame] | 1 | /* $OpenBSD: auth.h,v 1.37 2002/05/13 20:44:58 markus Exp $ */ |
Ben Lindstrom | 05764b9 | 2002-03-05 01:53:02 +0000 | [diff] [blame] | 2 | |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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. |
Ben Lindstrom | 4dccfa5 | 2000-12-28 16:40:05 +0000 | [diff] [blame] | 25 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 26 | */ |
Ben Lindstrom | 05764b9 | 2002-03-05 01:53:02 +0000 | [diff] [blame] | 27 | |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 28 | #ifndef AUTH_H |
| 29 | #define AUTH_H |
| 30 | |
Ben Lindstrom | 83647ce | 2001-06-25 04:30:16 +0000 | [diff] [blame] | 31 | #include "key.h" |
| 32 | #include "hostfile.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 33 | #include <openssl/rsa.h> |
| 34 | |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 35 | #ifdef HAVE_LOGIN_CAP |
| 36 | #include <login_cap.h> |
| 37 | #endif |
| 38 | #ifdef BSD_AUTH |
| 39 | #include <bsd_auth.h> |
| 40 | #endif |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 41 | #ifdef KRB5 |
| 42 | #include <krb5.h> |
| 43 | #endif |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 44 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 45 | typedef struct Authctxt Authctxt; |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 46 | typedef struct KbdintDevice KbdintDevice; |
| 47 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 48 | struct Authctxt { |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 49 | int success; |
| 50 | int postponed; |
| 51 | int valid; |
| 52 | int attempt; |
| 53 | int failures; |
| 54 | char *user; |
| 55 | char *service; |
| 56 | struct passwd *pw; |
| 57 | char *style; |
| 58 | void *kbdintctxt; |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 59 | #ifdef BSD_AUTH |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 60 | auth_session_t *as; |
| 61 | #endif |
| 62 | #ifdef KRB4 |
| 63 | char *krb4_ticket_file; |
| 64 | #endif |
| 65 | #ifdef KRB5 |
| 66 | krb5_context krb5_ctx; |
| 67 | krb5_auth_context krb5_auth_ctx; |
| 68 | krb5_ccache krb5_fwd_ccache; |
| 69 | krb5_principal krb5_user; |
| 70 | char *krb5_ticket_file; |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 71 | #endif |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 72 | }; |
| 73 | |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 74 | /* |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 75 | * Keyboard interactive device: |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 76 | * init_ctx returns: non NULL upon success |
| 77 | * query returns: 0 - success, otherwise failure |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 78 | * respond returns: 0 - success, 1 - need further interaction, |
| 79 | * otherwise - failure |
| 80 | */ |
| 81 | struct KbdintDevice |
| 82 | { |
| 83 | const char *name; |
Damien Miller | b046211 | 2002-02-19 15:24:43 +1100 | [diff] [blame] | 84 | void* (*init_ctx)(Authctxt*); |
Damien Miller | a93c6d8 | 2002-02-19 15:25:29 +1100 | [diff] [blame] | 85 | int (*query)(void *ctx, char **name, char **infotxt, |
| 86 | u_int *numprompts, char ***prompts, u_int **echo_on); |
Damien Miller | b046211 | 2002-02-19 15:24:43 +1100 | [diff] [blame] | 87 | int (*respond)(void *ctx, u_int numresp, char **responses); |
| 88 | void (*free_ctx)(void *ctx); |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
Ben Lindstrom | 0810519 | 2002-03-22 02:50:06 +0000 | [diff] [blame] | 91 | int auth_rhosts(struct passwd *, const char *); |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 92 | int |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 93 | auth_rhosts2(struct passwd *, const char *, const char *, const char *); |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 94 | |
Ben Lindstrom | 186b7da | 2002-03-22 01:20:32 +0000 | [diff] [blame] | 95 | int auth_rhosts_rsa(struct passwd *, char *, Key *); |
Ben Lindstrom | 4cc240d | 2001-07-04 04:46:56 +0000 | [diff] [blame] | 96 | int auth_password(Authctxt *, const char *); |
| 97 | int auth_rsa(struct passwd *, BIGNUM *); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 98 | int auth_rsa_challenge_dialog(Key *); |
Ben Lindstrom | 0810519 | 2002-03-22 02:50:06 +0000 | [diff] [blame] | 99 | BIGNUM *auth_rsa_generate_challenge(Key *); |
| 100 | int auth_rsa_verify_response(Key *, BIGNUM *, u_char[]); |
| 101 | int auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **); |
| 102 | |
| 103 | int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *); |
| 104 | int hostbased_key_allowed(struct passwd *, const char *, char *, Key *); |
| 105 | int user_key_allowed(struct passwd *, Key *); |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 106 | |
| 107 | #ifdef KRB4 |
| 108 | #include <krb.h> |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 109 | int auth_krb4(Authctxt *, KTEXT, char **); |
| 110 | int auth_krb4_password(Authctxt *, const char *); |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 111 | void krb4_cleanup_proc(void *); |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 112 | |
| 113 | #ifdef AFS |
| 114 | #include <kafs.h> |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 115 | int auth_krb4_tgt(Authctxt *, const char *); |
| 116 | int auth_afs_token(Authctxt *, const char *); |
Ben Lindstrom | 4cc240d | 2001-07-04 04:46:56 +0000 | [diff] [blame] | 117 | #endif /* AFS */ |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 118 | |
Ben Lindstrom | 4cc240d | 2001-07-04 04:46:56 +0000 | [diff] [blame] | 119 | #endif /* KRB4 */ |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 120 | |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 121 | #ifdef KRB5 |
| 122 | int auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client); |
| 123 | int auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt); |
| 124 | int auth_krb5_password(Authctxt *authctxt, const char *password); |
| 125 | void krb5_cleanup_proc(void *authctxt); |
| 126 | #endif /* KRB5 */ |
| 127 | |
Damien Miller | b848158 | 2000-12-03 11:51:51 +1100 | [diff] [blame] | 128 | #include "auth-pam.h" |
| 129 | #include "auth2-pam.h" |
| 130 | |
Ben Lindstrom | 73ab9ba | 2002-03-22 01:27:35 +0000 | [diff] [blame] | 131 | Authctxt *do_authentication(void); |
| 132 | Authctxt *do_authentication2(void); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 133 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 134 | Authctxt *authctxt_new(void); |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 135 | void auth_log(Authctxt *, int, char *, char *); |
| 136 | void userauth_finish(Authctxt *, int, char *); |
| 137 | int auth_root_allowed(char *); |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 138 | |
Damien Miller | 5ad9fd9 | 2002-05-13 11:07:41 +1000 | [diff] [blame] | 139 | char *auth2_read_banner(void); |
| 140 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 141 | void privsep_challenge_enable(void); |
| 142 | |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 143 | int auth2_challenge(Authctxt *, char *); |
Damien Miller | ee11625 | 2001-12-21 12:42:34 +1100 | [diff] [blame] | 144 | void auth2_challenge_stop(Authctxt *); |
Ben Lindstrom | 0810519 | 2002-03-22 02:50:06 +0000 | [diff] [blame] | 145 | int bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **); |
| 146 | int bsdauth_respond(void *, u_int, char **); |
| 147 | int skey_query(void *, char **, char **, u_int *, char ***, u_int **); |
| 148 | int skey_respond(void *, u_int, char **); |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 149 | |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 150 | int allowed_user(struct passwd *); |
Ben Lindstrom | 2ae18f4 | 2002-03-22 01:24:38 +0000 | [diff] [blame] | 151 | struct passwd * getpwnamallow(const char *user); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 152 | |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 153 | char *get_challenge(Authctxt *); |
| 154 | int verify_response(Authctxt *, const char *); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 155 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 156 | struct passwd * auth_get_user(void); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 157 | |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 158 | char *expand_filename(const char *, struct passwd *); |
| 159 | char *authorized_keys_file(struct passwd *); |
| 160 | char *authorized_keys_file2(struct passwd *); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 161 | |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 162 | int |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 163 | secure_filename(FILE *, const char *, struct passwd *, char *, size_t); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 164 | |
Ben Lindstrom | 83647ce | 2001-06-25 04:30:16 +0000 | [diff] [blame] | 165 | HostStatus |
Ben Lindstrom | 16ae3d0 | 2001-07-04 04:02:36 +0000 | [diff] [blame] | 166 | check_key_in_hostfiles(struct passwd *, Key *, const char *, |
| 167 | const char *, const char *); |
Ben Lindstrom | 83647ce | 2001-06-25 04:30:16 +0000 | [diff] [blame] | 168 | |
Ben Lindstrom | 0810519 | 2002-03-22 02:50:06 +0000 | [diff] [blame] | 169 | /* hostkey handling */ |
| 170 | Key *get_hostkey_by_index(int); |
| 171 | Key *get_hostkey_by_type(int); |
| 172 | int get_hostkey_index(Key *); |
| 173 | int ssh1_session_key(BIGNUM *); |
| 174 | |
Ben Lindstrom | a574cda | 2002-05-15 16:16:14 +0000 | [diff] [blame] | 175 | /* debug messages during authentication */ |
| 176 | void auth_debug_add(const char *fmt,...) __attribute__((format(printf, 1, 2))); |
| 177 | void auth_debug_send(void); |
| 178 | void auth_debug_reset(void); |
| 179 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 180 | #define AUTH_FAIL_MAX 6 |
| 181 | #define AUTH_FAIL_LOG (AUTH_FAIL_MAX/2) |
| 182 | #define AUTH_FAIL_MSG "Too many authentication failures for %.100s" |
| 183 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 184 | #define SKEY_PROMPT "\nS/Key Password: " |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 185 | #endif |