krb5_auth.h revision 953e07b7c43bc9bb7c7616180b1ba1730e22c59a
/*
SSSD
Kerberos Backend, private header file
Authors:
Sumit Bose <sbose@redhat.com>
Copyright (C) 2009 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __KRB5_AUTH_H__
#define __KRB5_AUTH_H__
#include "util/sss_krb5.h"
#include "providers/dp_backend.h"
#include "providers/krb5/krb5_common.h"
#define CCACHE_ENV_NAME "KRB5CCNAME"
#define SSSD_KRB5_CHANGEPW_PRINCIPLE "SSSD_KRB5_CHANGEPW_PRINCIPLE"
struct krb5child_req {
int read_from_child_fd;
int write_to_child_fd;
struct tevent_timer *timeout_handler;
const char *ccname;
const char *homedir;
const char *upn;
bool is_offline;
bool active_ccache_present;
bool valid_tgt_present;
};
struct fo_service;
struct krb5_ctx {
/* opts taken from kinit */
/* in seconds */
int forwardable;
int proxiable;
int addresses;
int not_forwardable;
int not_proxiable;
int no_addresses;
int verbose;
char* principal_name;
char* service_name;
char* keytab_name;
char* k5_cache_name;
char* k4_cache_name;
struct krb5_service *service;
int child_debug_fd;
};
#endif /* __KRB5_AUTH_H__ */