2004-05-24 02:36:23 +02:00
|
|
|
/* $OpenBSD: auth.h,v 1.50 2004/05/23 23:59:53 dtucker Exp $ */
|
2002-03-05 02:53:02 +01:00
|
|
|
|
2000-09-16 04:29:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2000-12-28 17:40:05 +01:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
*/
|
2002-03-05 02:53:02 +01:00
|
|
|
|
2000-04-01 03:09:21 +02:00
|
|
|
#ifndef AUTH_H
|
|
|
|
#define AUTH_H
|
|
|
|
|
2001-06-25 06:30:16 +02:00
|
|
|
#include "key.h"
|
|
|
|
#include "hostfile.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include <openssl/rsa.h>
|
|
|
|
|
2001-02-18 07:01:00 +01:00
|
|
|
#ifdef HAVE_LOGIN_CAP
|
|
|
|
#include <login_cap.h>
|
|
|
|
#endif
|
|
|
|
#ifdef BSD_AUTH
|
|
|
|
#include <bsd_auth.h>
|
|
|
|
#endif
|
2001-07-04 06:21:14 +02:00
|
|
|
#ifdef KRB5
|
|
|
|
#include <krb5.h>
|
|
|
|
#endif
|
2001-02-18 07:01:00 +01:00
|
|
|
|
2000-10-14 07:23:11 +02:00
|
|
|
typedef struct Authctxt Authctxt;
|
2002-06-06 22:52:37 +02:00
|
|
|
typedef struct Authmethod Authmethod;
|
2001-06-05 20:56:16 +02:00
|
|
|
typedef struct KbdintDevice KbdintDevice;
|
|
|
|
|
2000-10-14 07:23:11 +02:00
|
|
|
struct Authctxt {
|
2001-07-04 06:21:14 +02:00
|
|
|
int success;
|
2003-05-14 05:43:25 +02:00
|
|
|
int postponed; /* authentication needs another step */
|
|
|
|
int valid; /* user exists and is allowed to login */
|
2001-07-04 06:21:14 +02:00
|
|
|
int attempt;
|
|
|
|
int failures;
|
2004-02-06 06:24:31 +01:00
|
|
|
int force_pwchange;
|
2003-05-14 05:43:25 +02:00
|
|
|
char *user; /* username sent by the client */
|
2001-07-04 06:21:14 +02:00
|
|
|
char *service;
|
2003-05-14 05:43:25 +02:00
|
|
|
struct passwd *pw; /* set if 'valid' */
|
2001-07-04 06:21:14 +02:00
|
|
|
char *style;
|
|
|
|
void *kbdintctxt;
|
2001-02-18 07:01:00 +01:00
|
|
|
#ifdef BSD_AUTH
|
2001-07-04 06:21:14 +02:00
|
|
|
auth_session_t *as;
|
|
|
|
#endif
|
|
|
|
#ifdef KRB5
|
|
|
|
krb5_context krb5_ctx;
|
|
|
|
krb5_ccache krb5_fwd_ccache;
|
|
|
|
krb5_principal krb5_user;
|
|
|
|
char *krb5_ticket_file;
|
2004-04-16 14:47:55 +02:00
|
|
|
char *krb5_ccname;
|
2001-02-18 07:01:00 +01:00
|
|
|
#endif
|
2003-08-26 03:49:55 +02:00
|
|
|
void *methoddata;
|
2000-10-14 07:23:11 +02:00
|
|
|
};
|
2003-05-14 05:43:25 +02:00
|
|
|
/*
|
|
|
|
* Every authentication method has to handle authentication requests for
|
|
|
|
* non-existing users, or for users that are not allowed to login. In this
|
|
|
|
* case 'valid' is set to 0, but 'user' points to the username requested by
|
|
|
|
* the client.
|
|
|
|
*/
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2002-06-06 22:52:37 +02:00
|
|
|
struct Authmethod {
|
|
|
|
char *name;
|
|
|
|
int (*userauth)(Authctxt *authctxt);
|
|
|
|
int *enabled;
|
|
|
|
};
|
|
|
|
|
2001-06-05 20:56:16 +02:00
|
|
|
/*
|
|
|
|
* Keyboard interactive device:
|
2001-12-21 04:45:46 +01:00
|
|
|
* init_ctx returns: non NULL upon success
|
|
|
|
* query returns: 0 - success, otherwise failure
|
2001-06-05 20:56:16 +02:00
|
|
|
* respond returns: 0 - success, 1 - need further interaction,
|
|
|
|
* otherwise - failure
|
|
|
|
*/
|
|
|
|
struct KbdintDevice
|
|
|
|
{
|
|
|
|
const char *name;
|
2002-02-19 05:24:43 +01:00
|
|
|
void* (*init_ctx)(Authctxt*);
|
2002-02-19 05:25:29 +01:00
|
|
|
int (*query)(void *ctx, char **name, char **infotxt,
|
|
|
|
u_int *numprompts, char ***prompts, u_int **echo_on);
|
2002-02-19 05:24:43 +01:00
|
|
|
int (*respond)(void *ctx, u_int numresp, char **responses);
|
|
|
|
void (*free_ctx)(void *ctx);
|
2001-06-05 20:56:16 +02:00
|
|
|
};
|
|
|
|
|
2002-03-22 03:50:06 +01:00
|
|
|
int auth_rhosts(struct passwd *, const char *);
|
2001-04-13 01:34:34 +02:00
|
|
|
int
|
2001-07-04 06:02:36 +02:00
|
|
|
auth_rhosts2(struct passwd *, const char *, const char *, const char *);
|
2001-04-13 01:34:34 +02:00
|
|
|
|
2003-11-17 11:13:40 +01:00
|
|
|
int auth_rhosts_rsa(Authctxt *, char *, Key *);
|
2001-07-04 06:46:56 +02:00
|
|
|
int auth_password(Authctxt *, const char *);
|
2003-11-17 11:13:40 +01:00
|
|
|
int auth_rsa(Authctxt *, BIGNUM *);
|
2002-03-22 02:12:58 +01:00
|
|
|
int auth_rsa_challenge_dialog(Key *);
|
2002-03-22 03:50:06 +01:00
|
|
|
BIGNUM *auth_rsa_generate_challenge(Key *);
|
|
|
|
int auth_rsa_verify_response(Key *, BIGNUM *, u_char[]);
|
|
|
|
int auth_rsa_key_allowed(struct passwd *, BIGNUM *, Key **);
|
|
|
|
|
|
|
|
int auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *);
|
|
|
|
int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
|
|
|
|
int user_key_allowed(struct passwd *, Key *);
|
2001-01-22 06:34:40 +01:00
|
|
|
|
2001-07-04 06:21:14 +02:00
|
|
|
#ifdef KRB5
|
2002-09-12 01:47:29 +02:00
|
|
|
int auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client, krb5_data *);
|
2001-07-04 06:21:14 +02:00
|
|
|
int auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt);
|
|
|
|
int auth_krb5_password(Authctxt *authctxt, const char *password);
|
2003-10-02 08:12:36 +02:00
|
|
|
void krb5_cleanup_proc(Authctxt *authctxt);
|
2001-07-04 06:21:14 +02:00
|
|
|
#endif /* KRB5 */
|
|
|
|
|
2004-02-21 23:43:15 +01:00
|
|
|
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
|
2004-02-22 00:22:05 +01:00
|
|
|
#include <shadow.h>
|
2004-02-21 23:43:15 +01:00
|
|
|
int auth_shadow_acctexpired(struct spwd *);
|
2004-02-10 03:01:14 +01:00
|
|
|
int auth_shadow_pwexpired(Authctxt *);
|
|
|
|
#endif
|
|
|
|
|
2000-12-03 01:51:51 +01:00
|
|
|
#include "auth-pam.h"
|
2005-02-02 14:20:53 +01:00
|
|
|
#include "audit.h"
|
2005-01-20 12:20:50 +01:00
|
|
|
void remove_kbdint_device(const char *);
|
|
|
|
|
2004-02-10 02:50:19 +01:00
|
|
|
void disable_forwarding(void);
|
2000-12-03 01:51:51 +01:00
|
|
|
|
2003-11-22 02:11:06 +01:00
|
|
|
void do_authentication(Authctxt *);
|
|
|
|
void do_authentication2(Authctxt *);
|
2000-04-12 10:45:05 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
void auth_log(Authctxt *, int, char *, char *);
|
|
|
|
void userauth_finish(Authctxt *, int, char *);
|
2004-09-11 15:07:03 +02:00
|
|
|
void userauth_send_banner(const char *);
|
2001-07-04 06:02:36 +02:00
|
|
|
int auth_root_allowed(char *);
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2002-05-13 03:07:41 +02:00
|
|
|
char *auth2_read_banner(void);
|
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
void privsep_challenge_enable(void);
|
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
int auth2_challenge(Authctxt *, char *);
|
2001-12-21 02:42:34 +01:00
|
|
|
void auth2_challenge_stop(Authctxt *);
|
2002-03-22 03:50:06 +01:00
|
|
|
int bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **);
|
|
|
|
int bsdauth_respond(void *, u_int, char **);
|
|
|
|
int skey_query(void *, char **, char **, u_int *, char ***, u_int **);
|
|
|
|
int skey_respond(void *, u_int, char **);
|
2000-04-01 03:09:21 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
int allowed_user(struct passwd *);
|
2002-03-22 02:24:38 +01:00
|
|
|
struct passwd * getpwnamallow(const char *user);
|
2001-01-19 05:26:52 +01:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
char *get_challenge(Authctxt *);
|
|
|
|
int verify_response(Authctxt *, const char *);
|
2003-05-10 11:28:02 +02:00
|
|
|
void abandon_challenge_response(Authctxt *);
|
2001-01-19 05:26:52 +01:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
char *expand_filename(const char *, struct passwd *);
|
|
|
|
char *authorized_keys_file(struct passwd *);
|
|
|
|
char *authorized_keys_file2(struct passwd *);
|
2001-06-05 22:25:05 +02:00
|
|
|
|
|
|
|
int
|
2001-07-04 06:02:36 +02:00
|
|
|
secure_filename(FILE *, const char *, struct passwd *, char *, size_t);
|
2001-06-05 22:25:05 +02:00
|
|
|
|
2001-06-25 06:30:16 +02:00
|
|
|
HostStatus
|
2001-07-04 06:02:36 +02:00
|
|
|
check_key_in_hostfiles(struct passwd *, Key *, const char *,
|
|
|
|
const char *, const char *);
|
2001-06-25 06:30:16 +02:00
|
|
|
|
2002-03-22 03:50:06 +01:00
|
|
|
/* hostkey handling */
|
|
|
|
Key *get_hostkey_by_index(int);
|
|
|
|
Key *get_hostkey_by_type(int);
|
|
|
|
int get_hostkey_index(Key *);
|
|
|
|
int ssh1_session_key(BIGNUM *);
|
|
|
|
|
2002-05-15 18:16:14 +02:00
|
|
|
/* debug messages during authentication */
|
|
|
|
void auth_debug_add(const char *fmt,...) __attribute__((format(printf, 1, 2)));
|
|
|
|
void auth_debug_send(void);
|
|
|
|
void auth_debug_reset(void);
|
|
|
|
|
2003-09-02 23:32:45 +02:00
|
|
|
struct passwd *fakepw(void);
|
|
|
|
|
2000-04-29 15:57:08 +02:00
|
|
|
#define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
|
|
|
|
|
2002-03-22 03:30:41 +01:00
|
|
|
#define SKEY_PROMPT "\nS/Key Password: "
|
2000-04-01 03:09:21 +02:00
|
|
|
#endif
|