mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
b0f2165901
This fixes the samba4.ldap.password_lockout.python test. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Sumit Bose <sbose@redhat.com> Reviewed-by: Guenther Deschner <gd@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
186 lines
5.4 KiB
C
186 lines
5.4 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
|
|
Samba KDB plugin for MIT Kerberos
|
|
|
|
Copyright (c) 2010 Simo Sorce <idra@samba.org>.
|
|
Copyright (c) 2014 Andreas Schneider <asn@samba.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
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/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
|
|
#include "system/kerberos.h"
|
|
|
|
#include <profile.h>
|
|
#include <kdb.h>
|
|
|
|
#include "kdc/mit_samba.h"
|
|
#include "kdb_samba.h"
|
|
|
|
static krb5_error_code kdb_samba_init_library(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_fini_library(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_init_module(krb5_context context,
|
|
char *conf_section,
|
|
char **db_args,
|
|
int mode)
|
|
{
|
|
/* TODO mit_samba_context_init */
|
|
struct mit_samba_context *mit_ctx;
|
|
krb5_error_code code;
|
|
int rc;
|
|
|
|
rc = mit_samba_context_init(&mit_ctx);
|
|
if (rc != 0) {
|
|
return ENOMEM;
|
|
}
|
|
|
|
|
|
code = krb5_db_set_context(context, mit_ctx);
|
|
|
|
return code;
|
|
}
|
|
static krb5_error_code kdb_samba_fini_module(krb5_context context)
|
|
{
|
|
struct mit_samba_context *mit_ctx;
|
|
|
|
mit_ctx = ks_get_context(context);
|
|
if (mit_ctx == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
mit_samba_context_free(mit_ctx);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_db_create(krb5_context context,
|
|
char *conf_section,
|
|
char **db_args)
|
|
{
|
|
/* NOTE: used only by kadmin */
|
|
return KRB5_KDB_DBTYPE_NOSUP;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_db_destroy(krb5_context context,
|
|
char *conf_section,
|
|
char **db_args)
|
|
{
|
|
/* NOTE: used only by kadmin */
|
|
return KRB5_KDB_DBTYPE_NOSUP;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_db_get_age(krb5_context context,
|
|
char *db_name,
|
|
time_t *age)
|
|
{
|
|
/* TODO: returns last modification time of the db */
|
|
|
|
/* NOTE: used by and affects only lookaside cache,
|
|
* defer implementation until needed as samba doesn't keep this
|
|
* specific value readily available and it would require a full
|
|
* database search to get it. */
|
|
|
|
*age = time(NULL);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_db_lock(krb5_context context, int kmode)
|
|
{
|
|
|
|
/* NOTE: important only for kadmin */
|
|
/* NOTE: deferred as samba's DB cannot be easily locked and doesn't
|
|
* really make sense to do so anyway as the db is shared and support
|
|
* transactions */
|
|
return 0;
|
|
}
|
|
|
|
static krb5_error_code kdb_samba_db_unlock(krb5_context context)
|
|
{
|
|
|
|
/* NOTE: important only for kadmin */
|
|
/* NOTE: deferred as samba's DB cannot be easily locked and doesn't
|
|
* really make sense to do so anyway as the db is shared and support
|
|
* transactions */
|
|
return 0;
|
|
}
|
|
|
|
static void *kdb_samba_db_alloc(krb5_context context, void *ptr, size_t size)
|
|
{
|
|
return realloc(ptr, size);
|
|
}
|
|
|
|
static void kdb_samba_db_free(krb5_context context, void *ptr)
|
|
{
|
|
free(ptr);
|
|
}
|
|
|
|
kdb_vftabl kdb_function_table = {
|
|
KRB5_KDB_DAL_MAJOR_VERSION, /* major version number */
|
|
0, /* minor version number */
|
|
kdb_samba_init_library, /* init_library */
|
|
kdb_samba_fini_library, /* fini_library */
|
|
kdb_samba_init_module, /* init_module */
|
|
kdb_samba_fini_module, /* fini_module */
|
|
|
|
kdb_samba_db_create, /* db_create */
|
|
kdb_samba_db_destroy, /* db_destroy */
|
|
kdb_samba_db_get_age, /* db_get_age */
|
|
kdb_samba_db_lock, /* db_lock */
|
|
kdb_samba_db_unlock, /* db_unlock */
|
|
|
|
kdb_samba_db_get_principal, /* db_get_principal */
|
|
kdb_samba_db_free_principal, /* db_free_principal */
|
|
kdb_samba_db_put_principal, /* db_put_principal */
|
|
kdb_samba_db_delete_principal, /* db_delete_principal */
|
|
kdb_samba_db_iterate, /* db_iterate */
|
|
|
|
NULL, /* create_policy */
|
|
NULL, /* get_policy */
|
|
NULL, /* put_policy */
|
|
NULL, /* iter_policy */
|
|
NULL, /* delete_policy */
|
|
NULL, /* free_policy */
|
|
|
|
kdb_samba_db_alloc, /* db_alloc */
|
|
kdb_samba_db_free, /* db_free */
|
|
|
|
kdb_samba_fetch_master_key, /* fetch_master_key */
|
|
kdb_samba_fetch_master_key_list, /* fetch_master_key_list */
|
|
NULL, /* store_master_key_list */
|
|
NULL, /* dbe_search_enctype */
|
|
kdb_samba_change_pwd, /* change_pwd */
|
|
NULL, /* promote_db */
|
|
kdb_samba_dbekd_decrypt_key_data, /* decrypt_key_data */
|
|
kdb_samba_dbekd_encrypt_key_data, /* encrypt_key_data */
|
|
|
|
kdb_samba_db_sign_auth_data, /* sign_authdata */
|
|
NULL, /* check_transited_realms */
|
|
kdb_samba_db_check_policy_as, /* check_policy_as */
|
|
NULL, /* check_policy_tgs */
|
|
kdb_samba_db_audit_as_req, /* audit_as_req */
|
|
NULL, /* refresh_config */
|
|
kdb_samba_db_check_allowed_to_delegate
|
|
};
|