2005-06-03 18:32:10 +04:00
/*
* Copyright ( c ) 1999 - 2001 , 2003 , PADL Software Pty Ltd .
2009-05-26 06:31:39 +04:00
* Copyright ( c ) 2004 - 2009 , Andrew Bartlett < abartlet @ samba . org > .
2005-06-03 18:32:10 +04:00
* Copyright ( c ) 2004 , Stefan Metzmacher < metze @ samba . org >
* 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 .
*
* 3. Neither the name of PADL Software nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ` ` 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 PADL SOFTWARE OR CONTRIBUTORS 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 .
*/
# include "includes.h"
2010-11-11 06:09:41 +03:00
# include "kdc/kdc-glue.h"
2010-01-28 09:27:11 +03:00
# include "kdc/db-glue.h"
2013-11-06 01:39:42 +04:00
# include "auth/auth_sam.h"
2017-02-21 04:07:54 +03:00
# include "auth/common_auth.h"
2013-11-06 01:39:42 +04:00
# include <ldb.h>
2014-05-08 19:13:04 +04:00
# include "sdb.h"
# include "sdb_hdb.h"
2017-02-21 04:07:54 +03:00
# include "dsdb/samdb/samdb.h"
# include "param/param.h"
# include "../lib/tsocket/tsocket.h"
2017-04-04 02:57:01 +03:00
# include "librpc/gen_ndr/ndr_winbind_c.h"
# include "lib/messaging/irpc.h"
2022-02-21 10:45:45 +03:00
# include "hdb.h"
2022-03-02 00:00:17 +03:00
# include <kdc-audit.h>
2008-08-08 04:35:57 +04:00
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_open ( krb5_context context , HDB * db , int flags , mode_t mode )
2005-06-03 18:32:10 +04:00
{
if ( db - > hdb_master_key_set ) {
2009-06-08 13:06:16 +04:00
krb5_error_code ret = HDB_ERR_NOENTRY ;
2009-07-16 06:47:57 +04:00
krb5_warnx ( context , " hdb_samba4_open: use of a master key incompatible with LDB \n " ) ;
krb5_set_error_message ( context , ret , " hdb_samba4_open: use of a master key incompatible with LDB \n " ) ;
2009-06-08 13:06:16 +04:00
return ret ;
2009-12-23 23:08:02 +03:00
}
2005-06-03 18:32:10 +04:00
return 0 ;
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_close ( krb5_context context , HDB * db )
2005-06-03 18:32:10 +04:00
{
return 0 ;
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_lock ( krb5_context context , HDB * db , int operation )
2005-06-03 18:32:10 +04:00
{
return 0 ;
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_unlock ( krb5_context context , HDB * db )
2005-06-03 18:32:10 +04:00
{
return 0 ;
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_rename ( krb5_context context , HDB * db , const char * new_name )
2005-06-03 18:32:10 +04:00
{
return HDB_ERR_DB_INUSE ;
}
2022-02-22 09:41:14 +03:00
static krb5_error_code hdb_samba4_store ( krb5_context context , HDB * db , unsigned flags , hdb_entry * entry )
2005-06-03 18:32:10 +04:00
{
return HDB_ERR_DB_INUSE ;
}
2016-01-08 04:08:18 +03:00
/*
* If we ever want kadmin to work fast , we might try and reopen the
* ldb with LDB_NOSYNC
*/
static krb5_error_code hdb_samba4_set_sync ( krb5_context context , struct HDB * db , int set_sync )
2005-06-03 18:32:10 +04:00
{
2016-01-08 04:08:18 +03:00
return 0 ;
2005-06-03 18:32:10 +04:00
}
2022-02-22 09:41:14 +03:00
static void hdb_samba4_free_entry_context ( krb5_context context , struct HDB * db , hdb_entry * entry )
{
/*
* This function is now called for every HDB entry , not just those with
* ' context ' set , so we have to check that the context is not NULL .
*/
if ( entry - > context ! = NULL ) {
2022-03-22 19:04:22 +03:00
struct samba_kdc_entry * skdc_entry =
talloc_get_type_abort ( entry - > context ,
struct samba_kdc_entry ) ;
2022-02-22 09:41:14 +03:00
/* this function is called only from hdb_free_entry().
* Make sure we neutralize the destructor or we will
* get a double free later when hdb_free_entry ( ) will
* try to call free_hdb_entry ( ) */
2022-03-22 19:04:22 +03:00
entry - > context = NULL ;
skdc_entry - > kdc_entry = NULL ;
TALLOC_FREE ( skdc_entry ) ;
2022-02-22 09:41:14 +03:00
}
}
2018-09-20 05:24:11 +03:00
static int hdb_samba4_fill_fast_cookie ( krb5_context context ,
struct samba_kdc_db_context * kdc_db_ctx )
{
struct ldb_message * msg = ldb_msg_new ( kdc_db_ctx ) ;
int ldb_ret ;
uint8_t secretbuffer [ 32 ] ;
struct ldb_val val = data_blob_const ( secretbuffer ,
sizeof ( secretbuffer ) ) ;
if ( msg = = NULL ) {
DBG_ERR ( " Failed to allocate msg for new fast cookie \n " ) ;
return LDB_ERR_OPERATIONS_ERROR ;
}
/* Fill in all the keys with the same secret */
generate_secret_buffer ( secretbuffer ,
sizeof ( secretbuffer ) ) ;
msg - > dn = kdc_db_ctx - > fx_cookie_dn ;
ldb_ret = ldb_msg_add_value ( msg , " secret " , & val , NULL ) ;
if ( ldb_ret ! = LDB_SUCCESS ) {
return ldb_ret ;
}
ldb_ret = ldb_add ( kdc_db_ctx - > secrets_db ,
msg ) ;
if ( ldb_ret ! = LDB_SUCCESS ) {
DBG_ERR ( " Failed to add fast cookie to ldb: %s \n " ,
ldb_errstring ( kdc_db_ctx - > secrets_db ) ) ;
}
return ldb_ret ;
}
static krb5_error_code hdb_samba4_fetch_fast_cookie ( krb5_context context ,
struct samba_kdc_db_context * kdc_db_ctx ,
2022-03-23 05:52:43 +03:00
hdb_entry * entry )
2018-09-20 05:24:11 +03:00
{
krb5_error_code ret = SDB_ERR_NOENTRY ;
TALLOC_CTX * mem_ctx ;
struct ldb_result * res ;
int ldb_ret ;
2022-03-23 05:52:43 +03:00
struct sdb_entry sentry = { } ;
2018-09-20 05:24:11 +03:00
const char * attrs [ ] = {
" secret " ,
NULL
} ;
const struct ldb_val * val ;
mem_ctx = talloc_named ( kdc_db_ctx , 0 , " samba_kdc_fetch context " ) ;
if ( ! mem_ctx ) {
ret = ENOMEM ;
krb5_set_error_message ( context , ret , " samba_kdc_fetch: talloc_named() failed! " ) ;
return ret ;
}
/* search for CN=FX-COOKIE */
ldb_ret = ldb_search ( kdc_db_ctx - > secrets_db ,
mem_ctx ,
& res ,
kdc_db_ctx - > fx_cookie_dn ,
LDB_SCOPE_BASE ,
attrs , NULL ) ;
if ( ldb_ret = = LDB_ERR_NO_SUCH_OBJECT | | res - > count = = 0 ) {
ldb_ret = hdb_samba4_fill_fast_cookie ( context ,
kdc_db_ctx ) ;
if ( ldb_ret ! = LDB_SUCCESS ) {
TALLOC_FREE ( mem_ctx ) ;
return HDB_ERR_NO_WRITE_SUPPORT ;
}
/* search for CN=FX-COOKIE */
ldb_ret = ldb_search ( kdc_db_ctx - > secrets_db ,
mem_ctx ,
& res ,
kdc_db_ctx - > fx_cookie_dn ,
LDB_SCOPE_BASE ,
attrs , NULL ) ;
if ( ldb_ret ! = LDB_SUCCESS | | res - > count ! = 1 ) {
TALLOC_FREE ( mem_ctx ) ;
return HDB_ERR_NOENTRY ;
}
}
val = ldb_msg_find_ldb_val ( res - > msgs [ 0 ] ,
" secret " ) ;
if ( val = = NULL | | val - > length ! = 32 ) {
TALLOC_FREE ( mem_ctx ) ;
return HDB_ERR_NOENTRY ;
}
ret = krb5_make_principal ( context ,
2022-03-23 05:52:43 +03:00
& sentry . principal ,
2018-09-20 05:24:11 +03:00
KRB5_WELLKNOWN_ORG_H5L_REALM ,
KRB5_WELLKNOWN_NAME , " org.h5l.fast-cookie " ,
NULL ) ;
if ( ret ) {
TALLOC_FREE ( mem_ctx ) ;
return ret ;
}
2022-03-22 20:09:33 +03:00
ret = samba_kdc_set_fixed_keys ( context , kdc_db_ctx , val , false ,
2022-03-23 05:52:43 +03:00
& sentry . keys ) ;
2018-09-20 05:24:11 +03:00
if ( ret ! = 0 ) {
return ret ;
}
2022-03-23 05:52:43 +03:00
ret = sdb_entry_to_hdb_entry ( context , & sentry , entry ) ;
sdb_entry_free ( & sentry ) ;
2018-09-20 05:24:11 +03:00
TALLOC_FREE ( mem_ctx ) ;
return ret ;
}
2010-10-02 10:55:06 +04:00
static krb5_error_code hdb_samba4_fetch_kvno ( krb5_context context , HDB * db ,
krb5_const_principal principal ,
unsigned flags ,
2010-12-04 01:06:53 +03:00
krb5_kvno kvno ,
2022-02-22 09:41:14 +03:00
hdb_entry * entry_ex )
2010-10-02 10:55:06 +04:00
{
struct samba_kdc_db_context * kdc_db_ctx ;
2014-05-08 19:13:04 +04:00
struct sdb_entry_ex sdb_entry_ex = { } ;
krb5_error_code code , ret ;
2022-01-26 10:44:13 +03:00
uint32_t sflags ;
2010-10-02 10:55:06 +04:00
kdc_db_ctx = talloc_get_type_abort ( db - > hdb_db ,
struct samba_kdc_db_context ) ;
2018-09-20 05:24:11 +03:00
if ( flags & HDB_F_GET_FAST_COOKIE ) {
return hdb_samba4_fetch_fast_cookie ( context ,
kdc_db_ctx ,
entry_ex ) ;
}
2022-01-26 10:44:13 +03:00
sflags = ( flags & SDB_F_HDB_MASK ) ;
2015-08-04 12:35:45 +03:00
ret = samba_kdc_fetch ( context ,
kdc_db_ctx ,
principal ,
2022-01-26 10:44:13 +03:00
sflags ,
2015-08-04 12:35:45 +03:00
kvno ,
& sdb_entry_ex ) ;
switch ( ret ) {
case 0 :
code = 0 ;
break ;
case SDB_ERR_WRONG_REALM :
/*
* If SDB_ERR_WRONG_REALM is returned we need to process the
* sdb_entry to fill the principal in the HDB entry .
*/
code = HDB_ERR_WRONG_REALM ;
break ;
case SDB_ERR_NOENTRY :
return HDB_ERR_NOENTRY ;
2017-09-21 13:02:25 +03:00
case SDB_ERR_NOT_FOUND_HERE :
2015-08-04 12:35:45 +03:00
return HDB_ERR_NOT_FOUND_HERE ;
2017-09-21 13:02:25 +03:00
default :
return ret ;
2014-05-08 19:13:04 +04:00
}
ret = sdb_entry_ex_to_hdb_entry_ex ( context , & sdb_entry_ex , entry_ex ) ;
sdb_free_entry ( & sdb_entry_ex ) ;
2015-08-04 12:35:45 +03:00
if ( code ! = 0 & & ret ! = 0 ) {
2014-05-08 19:13:04 +04:00
code = ret ;
}
return code ;
2010-10-02 10:55:06 +04:00
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_firstkey ( krb5_context context , HDB * db , unsigned flags ,
2022-02-22 09:41:14 +03:00
hdb_entry * entry )
2005-06-03 18:32:10 +04:00
{
2010-01-28 09:27:11 +03:00
struct samba_kdc_db_context * kdc_db_ctx ;
2014-05-08 19:13:04 +04:00
struct sdb_entry_ex sdb_entry_ex = { } ;
krb5_error_code ret ;
2005-06-03 18:32:10 +04:00
2010-01-28 09:27:11 +03:00
kdc_db_ctx = talloc_get_type_abort ( db - > hdb_db ,
struct samba_kdc_db_context ) ;
2007-06-14 16:19:53 +04:00
2014-05-08 19:13:04 +04:00
ret = samba_kdc_firstkey ( context , kdc_db_ctx , & sdb_entry_ex ) ;
2015-08-04 12:35:45 +03:00
switch ( ret ) {
case 0 :
break ;
case SDB_ERR_WRONG_REALM :
return HDB_ERR_WRONG_REALM ;
case SDB_ERR_NOENTRY :
return HDB_ERR_NOENTRY ;
2017-09-21 13:02:25 +03:00
case SDB_ERR_NOT_FOUND_HERE :
2015-08-04 12:35:45 +03:00
return HDB_ERR_NOT_FOUND_HERE ;
2017-09-21 13:02:25 +03:00
default :
return ret ;
2014-05-08 19:13:04 +04:00
}
ret = sdb_entry_ex_to_hdb_entry_ex ( context , & sdb_entry_ex , entry ) ;
sdb_free_entry ( & sdb_entry_ex ) ;
return ret ;
2005-06-03 18:32:10 +04:00
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_nextkey ( krb5_context context , HDB * db , unsigned flags ,
2022-02-22 09:41:14 +03:00
hdb_entry * entry )
2005-06-03 18:32:10 +04:00
{
2010-01-28 09:27:11 +03:00
struct samba_kdc_db_context * kdc_db_ctx ;
2014-05-08 19:13:04 +04:00
struct sdb_entry_ex sdb_entry_ex = { } ;
krb5_error_code ret ;
2010-01-28 09:27:11 +03:00
kdc_db_ctx = talloc_get_type_abort ( db - > hdb_db ,
struct samba_kdc_db_context ) ;
2014-05-08 19:13:04 +04:00
ret = samba_kdc_nextkey ( context , kdc_db_ctx , & sdb_entry_ex ) ;
2015-08-04 12:35:45 +03:00
switch ( ret ) {
case 0 :
break ;
case SDB_ERR_WRONG_REALM :
return HDB_ERR_WRONG_REALM ;
case SDB_ERR_NOENTRY :
return HDB_ERR_NOENTRY ;
2017-09-21 13:02:25 +03:00
case SDB_ERR_NOT_FOUND_HERE :
2015-08-04 12:35:45 +03:00
return HDB_ERR_NOT_FOUND_HERE ;
2017-09-21 13:02:25 +03:00
default :
return ret ;
2014-05-08 19:13:04 +04:00
}
ret = sdb_entry_ex_to_hdb_entry_ex ( context , & sdb_entry_ex , entry ) ;
sdb_free_entry ( & sdb_entry_ex ) ;
return ret ;
2005-06-03 18:32:10 +04:00
}
2009-07-16 06:47:57 +04:00
static krb5_error_code hdb_samba4_destroy ( krb5_context context , HDB * db )
2005-06-03 18:32:10 +04:00
{
talloc_free ( db ) ;
return 0 ;
}
2010-01-21 17:57:41 +03:00
static krb5_error_code
2011-04-07 13:16:55 +04:00
hdb_samba4_check_constrained_delegation ( krb5_context context , HDB * db ,
2022-02-22 09:41:14 +03:00
hdb_entry * entry ,
2010-01-21 17:57:41 +03:00
krb5_const_principal target_principal )
2009-07-18 04:15:55 +04:00
{
2010-01-28 09:27:11 +03:00
struct samba_kdc_db_context * kdc_db_ctx ;
2014-05-09 16:58:08 +04:00
struct samba_kdc_entry * skdc_entry ;
2015-08-04 12:35:45 +03:00
krb5_error_code ret ;
2009-07-18 04:15:55 +04:00
2010-01-28 09:27:11 +03:00
kdc_db_ctx = talloc_get_type_abort ( db - > hdb_db ,
struct samba_kdc_db_context ) ;
2022-02-22 09:41:14 +03:00
skdc_entry = talloc_get_type_abort ( entry - > context ,
2014-05-09 16:58:08 +04:00
struct samba_kdc_entry ) ;
2009-07-18 04:15:55 +04:00
2015-08-04 12:35:45 +03:00
ret = samba_kdc_check_s4u2proxy ( context , kdc_db_ctx ,
skdc_entry ,
target_principal ) ;
switch ( ret ) {
case 0 :
break ;
case SDB_ERR_WRONG_REALM :
ret = HDB_ERR_WRONG_REALM ;
break ;
case SDB_ERR_NOENTRY :
ret = HDB_ERR_NOENTRY ;
break ;
2017-09-21 13:02:25 +03:00
case SDB_ERR_NOT_FOUND_HERE :
2015-08-04 12:35:45 +03:00
ret = HDB_ERR_NOT_FOUND_HERE ;
break ;
2017-09-21 13:02:25 +03:00
default :
break ;
2015-08-04 12:35:45 +03:00
}
return ret ;
2009-07-18 04:15:55 +04:00
}
2010-01-21 17:57:41 +03:00
static krb5_error_code
hdb_samba4_check_pkinit_ms_upn_match ( krb5_context context , HDB * db ,
2022-02-22 09:41:14 +03:00
hdb_entry * entry ,
2010-01-21 17:57:41 +03:00
krb5_const_principal certificate_principal )
2009-07-28 08:05:19 +04:00
{
2010-01-28 09:27:11 +03:00
struct samba_kdc_db_context * kdc_db_ctx ;
2014-05-09 16:56:22 +04:00
struct samba_kdc_entry * skdc_entry ;
2015-08-04 12:35:45 +03:00
krb5_error_code ret ;
2009-07-28 08:05:19 +04:00
2010-01-28 09:27:11 +03:00
kdc_db_ctx = talloc_get_type_abort ( db - > hdb_db ,
struct samba_kdc_db_context ) ;
2022-02-22 09:41:14 +03:00
skdc_entry = talloc_get_type_abort ( entry - > context ,
2014-05-09 16:56:22 +04:00
struct samba_kdc_entry ) ;
2009-07-28 08:05:19 +04:00
2015-08-04 12:35:45 +03:00
ret = samba_kdc_check_pkinit_ms_upn_match ( context , kdc_db_ctx ,
skdc_entry ,
certificate_principal ) ;
switch ( ret ) {
case 0 :
break ;
case SDB_ERR_WRONG_REALM :
ret = HDB_ERR_WRONG_REALM ;
break ;
case SDB_ERR_NOENTRY :
ret = HDB_ERR_NOENTRY ;
break ;
2017-09-21 13:02:25 +03:00
case SDB_ERR_NOT_FOUND_HERE :
2015-08-04 12:35:45 +03:00
ret = HDB_ERR_NOT_FOUND_HERE ;
break ;
2017-09-21 13:02:25 +03:00
default :
break ;
2015-08-04 12:35:45 +03:00
}
return ret ;
2009-07-28 08:05:19 +04:00
}
2011-04-07 13:16:55 +04:00
static krb5_error_code
2016-01-08 04:08:18 +03:00
hdb_samba4_check_client_matches_target_service ( krb5_context context , HDB * db ,
2022-02-22 09:41:14 +03:00
hdb_entry * client_entry ,
hdb_entry * server_target_entry )
2011-04-07 13:16:55 +04:00
{
2021-10-07 22:29:51 +03:00
struct samba_kdc_entry * skdc_client_entry
2022-02-22 09:41:14 +03:00
= talloc_get_type_abort ( client_entry - > context ,
2021-10-07 22:29:51 +03:00
struct samba_kdc_entry ) ;
struct samba_kdc_entry * skdc_server_target_entry
2022-02-22 09:41:14 +03:00
= talloc_get_type_abort ( server_target_entry - > context ,
2021-10-07 22:29:51 +03:00
struct samba_kdc_entry ) ;
2016-01-08 04:08:18 +03:00
return samba_kdc_check_client_matches_target_service ( context ,
skdc_client_entry ,
skdc_server_target_entry ) ;
2011-04-07 13:16:55 +04:00
}
2017-04-11 06:51:50 +03:00
static void reset_bad_password_netlogon ( TALLOC_CTX * mem_ctx ,
struct samba_kdc_db_context * kdc_db_ctx ,
struct netr_SendToSamBase * send_to_sam )
{
struct dcerpc_binding_handle * irpc_handle ;
struct winbind_SendToSam req ;
irpc_handle = irpc_binding_handle_by_name ( mem_ctx , kdc_db_ctx - > msg_ctx ,
" winbind_server " ,
& ndr_table_winbind ) ;
if ( irpc_handle = = NULL ) {
DEBUG ( 0 , ( " No winbind_server running! \n " ) ) ;
return ;
}
req . in . message = * send_to_sam ;
dcerpc_winbind_SendToSam_r_send ( mem_ctx , kdc_db_ctx - > ev_ctx ,
irpc_handle , & req ) ;
}
2022-02-21 10:28:42 +03:00
static krb5_error_code hdb_samba4_audit ( krb5_context context ,
HDB * db ,
2022-02-22 09:41:14 +03:00
hdb_entry * entry ,
2022-02-21 10:28:42 +03:00
hdb_request_t r )
2013-11-06 01:39:42 +04:00
{
struct samba_kdc_db_context * kdc_db_ctx = talloc_get_type_abort ( db - > hdb_db ,
struct samba_kdc_db_context ) ;
auth: keep track of lastLogon and lastLogonTimestamp
lastLogon is supposed to be updated for every interactive or kerberos
login, and (according to testing against Windows2012r2) when the bad
password count is non-zero but the lockout time is zero. It is not
replicated.
lastLogonTimestamp is updated if the old value is more than 14 -
random.choice([0, 1, 2, 3, 4, 5]) days old, and it is replicated. The
14 in this calculation is the default, stored as
"msDS-LogonTimeSyncInterval", which we offer no interface for
changing.
The authsam_zero_bad_pwd_count() function is a convenient place to
update these values, as it is called upon a successful logon however
that logon is performed. That makes the function's name inaccurate, so
we rename it authsam_logon_success_accounting(). It also needs to be
told whet5her the login is interactive.
The password_lockout tests are extended to test lastLogon and
lasLogonTimestamp.
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Ralph Boehme <slow@samba.org>
2015-10-23 06:57:56 +03:00
struct ldb_dn * domain_dn = ldb_get_default_basedn ( kdc_db_ctx - > samdb ) ;
2019-02-01 03:46:01 +03:00
uint64_t logon_id = generate_random_u64 ( ) ;
2022-02-21 10:28:42 +03:00
heim_object_t auth_details_obj = NULL ;
const char * auth_details = NULL ;
2022-02-21 10:45:45 +03:00
char * etype_str = NULL ;
2022-02-21 10:28:42 +03:00
heim_object_t hdb_auth_status_obj = NULL ;
int hdb_auth_status ;
heim_object_t pa_type_obj = NULL ;
const char * pa_type = NULL ;
struct auth_usersupplied_info ui ;
size_t sa_socklen = 0 ;
2022-02-21 12:29:12 +03:00
int final_ret = 0 ;
2022-02-21 10:28:42 +03:00
2022-03-02 00:00:17 +03:00
hdb_auth_status_obj = heim_audit_getkv ( ( heim_svc_req_desc ) r , KDC_REQUEST_KV_AUTH_EVENT ) ;
2022-02-21 10:28:42 +03:00
if ( hdb_auth_status_obj = = NULL ) {
/* No status code found, so just return. */
return 0 ;
}
hdb_auth_status = heim_number_get_int ( hdb_auth_status_obj ) ;
pa_type_obj = heim_audit_getkv ( ( heim_svc_req_desc ) r , " pa " ) ;
if ( pa_type_obj ! = NULL ) {
pa_type = heim_string_get_utf8 ( pa_type_obj ) ;
}
2022-03-02 00:00:17 +03:00
auth_details_obj = heim_audit_getkv ( ( heim_svc_req_desc ) r , KDC_REQUEST_KV_PKINIT_CLIENT_CERT ) ;
2022-02-22 05:48:12 +03:00
if ( auth_details_obj ! = NULL ) {
auth_details = heim_string_get_utf8 ( auth_details_obj ) ;
} else {
2022-03-02 00:00:17 +03:00
auth_details_obj = heim_audit_getkv ( ( heim_svc_req_desc ) r , KDC_REQUEST_KV_GSS_INITIATOR ) ;
2022-02-21 10:45:45 +03:00
if ( auth_details_obj ! = NULL ) {
auth_details = heim_string_get_utf8 ( auth_details_obj ) ;
2022-02-22 05:48:12 +03:00
} else {
2022-03-02 00:00:17 +03:00
heim_object_t etype_obj = heim_audit_getkv ( ( heim_svc_req_desc ) r , KDC_REQUEST_KV_PA_ETYPE ) ;
2022-02-22 05:48:12 +03:00
if ( etype_obj ! = NULL ) {
int etype = heim_number_get_int ( etype_obj ) ;
krb5_error_code ret = krb5_enctype_to_string ( r - > context , etype , & etype_str ) ;
if ( ret = = 0 ) {
auth_details = etype_str ;
} else {
auth_details = " unknown enctype " ;
}
2022-02-21 10:45:45 +03:00
}
}
}
2022-02-21 10:28:42 +03:00
2017-02-21 04:07:54 +03:00
/*
* Forcing this via the NTLM auth structure is not ideal , but
* it is the most practical option right now , and ensures the
* logs are consistent , even if some elements are always NULL .
*/
2022-02-21 10:28:42 +03:00
ui = ( struct auth_usersupplied_info ) {
2017-02-21 04:07:54 +03:00
. was_mapped = true ,
. client = {
2022-02-21 10:28:42 +03:00
. account_name = r - > cname ,
2017-02-21 04:07:54 +03:00
. domain_name = NULL ,
} ,
. service_description = " Kerberos KDC " ,
2016-01-08 04:08:18 +03:00
. auth_description = " Unknown Auth Description " ,
. password_type = auth_details ,
2019-02-01 03:46:01 +03:00
. logon_id = logon_id
2017-02-21 04:07:54 +03:00
} ;
2022-02-21 10:28:42 +03:00
switch ( r - > addr - > sa_family ) {
2017-02-21 04:07:54 +03:00
case AF_INET :
sa_socklen = sizeof ( struct sockaddr_in ) ;
break ;
# ifdef HAVE_IPV6
case AF_INET6 :
sa_socklen = sizeof ( struct sockaddr_in6 ) ;
break ;
# endif
}
switch ( hdb_auth_status ) {
2022-03-02 00:00:17 +03:00
case KDC_AUTH_EVENT_CLIENT_AUTHORIZED :
2017-02-21 04:07:54 +03:00
{
2017-04-11 06:51:50 +03:00
TALLOC_CTX * frame = talloc_stackframe ( ) ;
2022-02-22 09:41:14 +03:00
struct samba_kdc_entry * p = talloc_get_type ( entry - > context ,
2017-02-21 04:07:54 +03:00
struct samba_kdc_entry ) ;
2017-04-11 06:51:50 +03:00
struct netr_SendToSamBase * send_to_sam = NULL ;
2017-02-21 04:07:54 +03:00
/*
* TODO : We could log the AS - REQ authorization success here as
* well . However before we do that , we need to pass
* in the PAC here or re - calculate it .
*/
auth: keep track of lastLogon and lastLogonTimestamp
lastLogon is supposed to be updated for every interactive or kerberos
login, and (according to testing against Windows2012r2) when the bad
password count is non-zero but the lockout time is zero. It is not
replicated.
lastLogonTimestamp is updated if the old value is more than 14 -
random.choice([0, 1, 2, 3, 4, 5]) days old, and it is replicated. The
14 in this calculation is the default, stored as
"msDS-LogonTimeSyncInterval", which we offer no interface for
changing.
The authsam_zero_bad_pwd_count() function is a convenient place to
update these values, as it is called upon a successful logon however
that logon is performed. That makes the function's name inaccurate, so
we rename it authsam_logon_success_accounting(). It also needs to be
told whet5her the login is interactive.
The password_lockout tests are extended to test lastLogon and
lasLogonTimestamp.
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Ralph Boehme <slow@samba.org>
2015-10-23 06:57:56 +03:00
authsam_logon_success_accounting ( kdc_db_ctx - > samdb , p - > msg ,
2017-04-11 06:51:50 +03:00
domain_dn , true , & send_to_sam ) ;
if ( kdc_db_ctx - > rodc & & send_to_sam ! = NULL ) {
reset_bad_password_netlogon ( frame , kdc_db_ctx , send_to_sam ) ;
}
talloc_free ( frame ) ;
2017-02-21 04:07:54 +03:00
}
2022-03-02 00:10:08 +03:00
FALL_THROUGH ;
default :
2017-02-21 04:07:54 +03:00
{
TALLOC_CTX * frame = talloc_stackframe ( ) ;
2022-02-22 09:41:14 +03:00
struct samba_kdc_entry * p = talloc_get_type ( entry - > context ,
2017-02-21 04:07:54 +03:00
struct samba_kdc_entry ) ;
struct dom_sid * sid
= samdb_result_dom_sid ( frame , p - > msg , " objectSid " ) ;
const char * account_name
= ldb_msg_find_attr_as_string ( p - > msg , " sAMAccountName " , NULL ) ;
const char * domain_name = lpcfg_sam_name ( p - > kdc_db_ctx - > lp_ctx ) ;
struct tsocket_address * remote_host ;
2016-01-08 04:08:18 +03:00
const char * auth_description = NULL ;
2017-02-21 04:07:54 +03:00
NTSTATUS status ;
int ret ;
2022-02-21 12:29:12 +03:00
bool rwdc_fallback = false ;
2017-02-21 04:07:54 +03:00
2022-02-21 10:28:42 +03:00
ret = tsocket_address_bsd_from_sockaddr ( frame , r - > addr ,
2017-02-21 04:07:54 +03:00
sa_socklen ,
& remote_host ) ;
if ( ret ! = 0 ) {
ui . remote_host = NULL ;
} else {
ui . remote_host = remote_host ;
}
ui . mapped . account_name = account_name ;
ui . mapped . domain_name = domain_name ;
2016-01-08 04:08:18 +03:00
if ( pa_type ! = NULL ) {
auth_description = talloc_asprintf ( frame ,
" %s Pre-authentication " ,
pa_type ) ;
if ( auth_description = = NULL ) {
auth_description = pa_type ;
}
} else {
auth_description = " Unknown Pre-authentication " ;
}
ui . auth_description = auth_description ;
2022-03-02 00:10:08 +03:00
if ( hdb_auth_status = = KDC_AUTH_EVENT_CLIENT_AUTHORIZED ) {
2022-03-15 05:34:34 +03:00
/* This is the final sucess */
2022-03-02 00:10:08 +03:00
status = NT_STATUS_OK ;
2022-03-15 05:34:34 +03:00
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_VALIDATED_LONG_TERM_KEY ) {
/*
* This was only a pre - authentication success ,
* but we didn ' t reach the final
* KDC_AUTH_EVENT_CLIENT_AUTHORIZED ,
* so consult the error code .
*/
if ( r - > error_code = = 0 ) {
DBG_ERR ( " ERROR: VALIDATED_LONG_TERM_KEY "
" with error=0 => INTERNAL_ERROR \n " ) ;
status = NT_STATUS_INTERNAL_ERROR ;
final_ret = KRB5KRB_ERR_GENERIC ;
r - > error_code = final_ret ;
2022-03-16 11:21:03 +03:00
} else if ( ! NT_STATUS_IS_OK ( p - > reject_status ) ) {
status = p - > reject_status ;
2022-03-15 05:34:34 +03:00
} else {
status = krb5_to_nt_status ( r - > error_code ) ;
}
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_PREAUTH_SUCCEEDED ) {
/*
* This was only a pre - authentication success ,
* but we didn ' t reach the final
* KDC_AUTH_EVENT_CLIENT_AUTHORIZED ,
* so consult the error code .
*/
if ( r - > error_code = = 0 ) {
DBG_ERR ( " ERROR: PREAUTH_SUCCEEDED "
" with error=0 => INTERNAL_ERROR \n " ) ;
status = NT_STATUS_INTERNAL_ERROR ;
final_ret = KRB5KRB_ERR_GENERIC ;
r - > error_code = final_ret ;
2022-03-16 11:21:03 +03:00
} else if ( ! NT_STATUS_IS_OK ( p - > reject_status ) ) {
status = p - > reject_status ;
2022-03-15 05:34:34 +03:00
} else {
status = krb5_to_nt_status ( r - > error_code ) ;
}
2022-03-02 00:10:08 +03:00
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_CLIENT_TIME_SKEW ) {
status = NT_STATUS_TIME_DIFFERENCE_AT_DC ;
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_WRONG_LONG_TERM_KEY ) {
2017-04-04 02:57:01 +03:00
authsam_update_bad_pwd_count ( kdc_db_ctx - > samdb , p - > msg , domain_dn ) ;
status = NT_STATUS_WRONG_PASSWORD ;
2022-02-21 12:29:12 +03:00
rwdc_fallback = kdc_db_ctx - > rodc ;
2022-03-02 00:00:17 +03:00
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_CLIENT_LOCKED_OUT ) {
2016-01-08 04:08:18 +03:00
status = NT_STATUS_ACCOUNT_LOCKED_OUT ;
2022-02-21 12:29:12 +03:00
rwdc_fallback = kdc_db_ctx - > rodc ;
2022-03-02 00:10:08 +03:00
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_CLIENT_NAME_UNAUTHORIZED ) {
if ( pa_type ! = NULL & & strncmp ( pa_type , " PK-INIT " , strlen ( " PK-INIT " ) ) = = 0 ) {
status = NT_STATUS_PKINIT_NAME_MISMATCH ;
} else {
status = NT_STATUS_ACCOUNT_RESTRICTION ;
}
2022-02-21 12:29:12 +03:00
rwdc_fallback = kdc_db_ctx - > rodc ;
2022-03-02 00:00:17 +03:00
} else if ( hdb_auth_status = = KDC_AUTH_EVENT_PREAUTH_FAILED ) {
2022-02-22 05:48:12 +03:00
if ( pa_type ! = NULL & & strncmp ( pa_type , " PK-INIT " , strlen ( " PK-INIT " ) ) = = 0 ) {
status = NT_STATUS_PKINIT_FAILURE ;
} else {
status = NT_STATUS_GENERIC_COMMAND_FAILED ;
}
2022-02-21 12:29:12 +03:00
rwdc_fallback = kdc_db_ctx - > rodc ;
2016-01-08 04:08:18 +03:00
} else {
2022-03-02 00:10:08 +03:00
DBG_ERR ( " Unhandled hdb_auth_status=%d => INTERNAL_ERROR \n " ,
hdb_auth_status ) ;
2016-01-08 04:08:18 +03:00
status = NT_STATUS_INTERNAL_ERROR ;
2022-03-15 05:34:34 +03:00
final_ret = KRB5KRB_ERR_GENERIC ;
r - > error_code = final_ret ;
2017-04-04 02:57:01 +03:00
}
2022-02-21 12:29:12 +03:00
if ( rwdc_fallback ) {
/*
* Forward the request to an RWDC in order
* to give an authoritative answer to the client .
*/
auth_description = talloc_asprintf ( frame ,
" %s,Forward-To-RWDC " ,
ui . auth_description ) ;
if ( auth_description ! = NULL ) {
ui . auth_description = auth_description ;
}
final_ret = HDB_ERR_NOT_FOUND_HERE ;
}
2017-02-21 04:07:54 +03:00
log_authentication_event ( kdc_db_ctx - > msg_ctx ,
kdc_db_ctx - > lp_ctx ,
2022-02-21 10:28:42 +03:00
& r - > tv_start ,
2017-02-21 04:07:54 +03:00
& ui ,
status ,
domain_name ,
account_name ,
sid ) ;
2022-03-15 05:34:34 +03:00
if ( final_ret = = KRB5KRB_ERR_GENERIC & & socket_wrapper_enabled ( ) ) {
/*
* If we ' re running under make test
* just panic
*/
DBG_ERR ( " Unexpected situation => PANIC \n " ) ;
smb_panic ( " hdb_samba4_audit: Unexpected situation " ) ;
}
2017-02-21 04:07:54 +03:00
TALLOC_FREE ( frame ) ;
break ;
}
2022-03-02 00:00:17 +03:00
case KDC_AUTH_EVENT_CLIENT_UNKNOWN :
2017-02-21 04:07:54 +03:00
{
struct tsocket_address * remote_host ;
int ret ;
TALLOC_CTX * frame = talloc_stackframe ( ) ;
2022-02-21 10:28:42 +03:00
ret = tsocket_address_bsd_from_sockaddr ( frame , r - > addr ,
2017-02-21 04:07:54 +03:00
sa_socklen ,
& remote_host ) ;
if ( ret ! = 0 ) {
ui . remote_host = NULL ;
} else {
ui . remote_host = remote_host ;
}
2016-01-08 04:08:18 +03:00
if ( pa_type = = NULL ) {
pa_type = " AS-REQ " ;
}
ui . auth_description = pa_type ;
2022-02-21 12:29:12 +03:00
/* Note this is not forwarded to an RWDC */
2017-02-21 04:07:54 +03:00
log_authentication_event ( kdc_db_ctx - > msg_ctx ,
kdc_db_ctx - > lp_ctx ,
2022-02-21 10:28:42 +03:00
& r - > tv_start ,
2017-02-21 04:07:54 +03:00
& ui ,
NT_STATUS_NO_SUCH_USER ,
NULL , NULL ,
2019-06-07 04:41:35 +03:00
NULL ) ;
2017-02-21 04:07:54 +03:00
TALLOC_FREE ( frame ) ;
break ;
}
2013-11-06 01:39:42 +04:00
}
2022-02-21 10:45:45 +03:00
free ( etype_str ) ;
2022-02-21 12:29:12 +03:00
return final_ret ;
2013-11-06 01:39:42 +04:00
}
2010-01-28 09:27:11 +03:00
/* This interface is to be called by the KDC and libnet_keytab_dump,
* which is expecting Samba calling conventions .
* It is also called by a wrapper ( hdb_samba4_create ) from the
* kpasswdd - > krb5 - > keytab_hdb - > hdb code */
2006-01-24 08:31:08 +03:00
2010-01-28 08:08:36 +03:00
NTSTATUS hdb_samba4_create_kdc ( struct samba_kdc_base_context * base_ctx ,
krb5_context context , struct HDB * * db )
2005-06-03 18:32:10 +04:00
{
2010-01-28 08:08:36 +03:00
struct samba_kdc_db_context * kdc_db_ctx ;
2009-11-09 13:38:49 +03:00
NTSTATUS nt_status ;
2014-01-14 02:23:04 +04:00
if ( hdb_interface_version ! = HDB_INTERFACE_VERSION ) {
krb5_set_error_message ( context , EINVAL , " Heimdal HDB interface version mismatch between build-time and run-time libraries! " ) ;
return NT_STATUS_ERROR_DS_INCOMPATIBLE_VERSION ;
}
2021-12-08 06:42:32 +03:00
* db = talloc_zero ( base_ctx , HDB ) ;
2005-06-03 18:32:10 +04:00
if ( ! * db ) {
2009-06-08 13:06:16 +04:00
krb5_set_error_message ( context , ENOMEM , " malloc: out of memory " ) ;
2005-12-11 11:31:46 +03:00
return NT_STATUS_NO_MEMORY ;
2005-06-03 18:32:10 +04:00
}
( * db ) - > hdb_master_key_set = 0 ;
( * db ) - > hdb_db = NULL ;
2014-12-17 07:02:53 +03:00
( * db ) - > hdb_capability_flags = HDB_CAP_F_HANDLE_ENTERPRISE_PRINCIPAL ;
2005-06-05 17:11:42 +04:00
2010-09-28 07:05:37 +04:00
nt_status = samba_kdc_setup_db_ctx ( * db , base_ctx , & kdc_db_ctx ) ;
2009-11-09 13:38:49 +03:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
2010-09-28 07:05:37 +04:00
talloc_free ( * db ) ;
return nt_status ;
2009-11-09 13:38:49 +03:00
}
2010-01-28 08:08:36 +03:00
( * db ) - > hdb_db = kdc_db_ctx ;
2007-06-15 04:14:11 +04:00
( * db ) - > hdb_dbc = NULL ;
2009-07-16 06:47:57 +04:00
( * db ) - > hdb_open = hdb_samba4_open ;
( * db ) - > hdb_close = hdb_samba4_close ;
2022-02-22 09:41:14 +03:00
( * db ) - > hdb_free_entry_context = hdb_samba4_free_entry_context ;
2010-10-02 10:55:06 +04:00
( * db ) - > hdb_fetch_kvno = hdb_samba4_fetch_kvno ;
2009-07-16 06:47:57 +04:00
( * db ) - > hdb_store = hdb_samba4_store ;
( * db ) - > hdb_firstkey = hdb_samba4_firstkey ;
( * db ) - > hdb_nextkey = hdb_samba4_nextkey ;
( * db ) - > hdb_lock = hdb_samba4_lock ;
( * db ) - > hdb_unlock = hdb_samba4_unlock ;
2016-01-08 04:08:18 +03:00
( * db ) - > hdb_set_sync = hdb_samba4_set_sync ;
2009-07-16 06:47:57 +04:00
( * db ) - > hdb_rename = hdb_samba4_rename ;
2005-06-03 18:32:10 +04:00
/* we don't implement these, as we are not a lockable database */
( * db ) - > hdb__get = NULL ;
( * db ) - > hdb__put = NULL ;
/* kadmin should not be used for deletes - use other tools instead */
( * db ) - > hdb__del = NULL ;
2009-07-16 06:47:57 +04:00
( * db ) - > hdb_destroy = hdb_samba4_destroy ;
2005-06-03 18:32:10 +04:00
2022-02-21 10:28:42 +03:00
( * db ) - > hdb_audit = hdb_samba4_audit ;
2011-04-07 13:16:55 +04:00
( * db ) - > hdb_check_constrained_delegation = hdb_samba4_check_constrained_delegation ;
2009-07-28 08:05:19 +04:00
( * db ) - > hdb_check_pkinit_ms_upn_match = hdb_samba4_check_pkinit_ms_upn_match ;
2016-01-08 04:08:18 +03:00
( * db ) - > hdb_check_client_matches_target_service = hdb_samba4_check_client_matches_target_service ;
2009-07-07 06:34:55 +04:00
2005-12-11 11:31:46 +03:00
return NT_STATUS_OK ;
2005-06-03 18:32:10 +04:00
}