mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 20:30:38 +09:00
fix: implement gssapi logging according to docs fix: remove redundant setting of session->gssapi to NULL feat: add gssapi struct and functions to header file refactor: initialize gssapi context once fix: remove redundant ssh_gssapi_free Signed-off-by: Gauravsingh Sisodia <xaerru@gmail.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Sahana Prasad <sahana@redhat.com>
87 lines
3.0 KiB
C
87 lines
3.0 KiB
C
/*
|
|
* This file is part of the SSH Library
|
|
*
|
|
* Copyright (c) 2013 by Aris Adamantiadis
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef GSSAPI_H_
|
|
#define GSSAPI_H_
|
|
|
|
#include "config.h"
|
|
#ifdef WITH_GSSAPI
|
|
#include "session.h"
|
|
#include <gssapi/gssapi.h>
|
|
|
|
/* all OID begin with the tag identifier + length */
|
|
#define SSH_OID_TAG 06
|
|
|
|
typedef struct ssh_gssapi_struct *ssh_gssapi;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** current state of an GSSAPI authentication */
|
|
enum ssh_gssapi_state_e {
|
|
SSH_GSSAPI_STATE_NONE, /* no status */
|
|
SSH_GSSAPI_STATE_RCV_TOKEN, /* Expecting a token */
|
|
SSH_GSSAPI_STATE_RCV_MIC, /* Expecting a MIC */
|
|
};
|
|
|
|
struct ssh_gssapi_struct{
|
|
enum ssh_gssapi_state_e state; /* current state */
|
|
struct gss_OID_desc_struct mech; /* mechanism being elected for auth */
|
|
gss_cred_id_t server_creds; /* credentials of server */
|
|
gss_cred_id_t client_creds; /* creds delegated by the client */
|
|
gss_ctx_id_t ctx; /* the authentication context */
|
|
gss_name_t client_name; /* Identity of the client */
|
|
char *user; /* username of client */
|
|
char *canonic_user; /* canonic form of the client's username */
|
|
char *service; /* name of the service */
|
|
struct {
|
|
gss_name_t server_name; /* identity of server */
|
|
OM_uint32 flags; /* flags used for init context */
|
|
gss_OID oid; /* mech being used for authentication */
|
|
gss_cred_id_t creds; /* creds used to initialize context */
|
|
gss_cred_id_t client_deleg_creds; /* delegated creds (const, not freeable) */
|
|
} client;
|
|
};
|
|
|
|
#ifdef WITH_SERVER
|
|
int ssh_gssapi_handle_userauth(ssh_session session, const char *user, uint32_t n_oid, ssh_string *oids);
|
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_gssapi_token_server);
|
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_gssapi_mic);
|
|
#endif /* WITH_SERVER */
|
|
|
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_gssapi_token);
|
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_gssapi_token_client);
|
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_gssapi_response);
|
|
|
|
|
|
int ssh_gssapi_init(ssh_session session);
|
|
void ssh_gssapi_log_error(int verb, const char *msg_a, int maj_stat, int min_stat);
|
|
int ssh_gssapi_auth_mic(ssh_session session);
|
|
void ssh_gssapi_free(ssh_session session);
|
|
char *ssh_gssapi_name_to_char(gss_name_t name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* WITH_GSSAPI */
|
|
#endif /* GSSAPI_H */
|