1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4:schannel Open the schannel_store.tdb at startup

This will allow TDB_CLEAR_IF_FIRST behaviour in future

Signed-off-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andrew Bartlett 2010-06-23 10:33:15 +10:00 committed by Jeremy Allison
parent 825b2f456c
commit 58d0b638c8

View File

@ -31,6 +31,7 @@
#include "ntvfs/ntvfs.h" #include "ntvfs/ntvfs.h"
#include "ntptr/ntptr.h" #include "ntptr/ntptr.h"
#include "auth/gensec/gensec.h" #include "auth/gensec/gensec.h"
#include "libcli/auth/schannel.h"
#include "smbd/process_model.h" #include "smbd/process_model.h"
#include "param/secrets.h" #include "param/secrets.h"
#include "smbd/pidfile.h" #include "smbd/pidfile.h"
@ -400,6 +401,13 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[
return 1; return 1;
} }
if (lp_server_role(cmdline_lp_ctx) == ROLE_DOMAIN_CONTROLLER) {
if (!open_schannel_session_store(talloc_autofree_context(), lp_private_dir(cmdline_lp_ctx))) {
DEBUG(0,("ERROR: Samba cannot open schannel store for secured NETLOGON operations.\n"));
exit(1);
}
}
gensec_init(cmdline_lp_ctx); /* FIXME: */ gensec_init(cmdline_lp_ctx); /* FIXME: */
ntptr_init(cmdline_lp_ctx); /* FIXME: maybe run this in the initialization function ntptr_init(cmdline_lp_ctx); /* FIXME: maybe run this in the initialization function