/* Editor Settings: expandtabs and use 4 spaces for indentation * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: * * -*- mode: c, c-basic-offset: 4 -*- */ /* * Copyright Likewise Software 2004-2008 * All rights reserved. * * 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 2 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 * . * * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING * TERMS AS WELL. IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU * GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE. IF YOU * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT * license@likewisesoftware.com */ /* * Copyright (C) Likewise Software. All rights reserved. * * Module Name: * * adprovider.h * * Abstract: * * Likewise Security and Authentication Subsystem (LSASS) * * Active Directory Provider * * Authors: Krishna Ganugapati (krishnag@likewisesoftware.com) * Sriram Nambakam (snambakam@likewisesoftware.com) */ //#define AD_CACHE_IN_MEMORY #include "config.h" #include "lsasystem.h" #include "lsadef.h" #include "lsa/lsa.h" #include "lsa/lsa2.h" #include "lsa/join.h" #include #include #include #include #include #include #include #include #include #include #include #include "lwmem.h" #include "lwstr.h" #include #include #include "lwsecurityidentifier.h" #include "lsautils.h" #include "lsaunistr.h" #include "lsaipc.h" #include "lsaprovider.h" #include "lsaprovider2.h" #include "lsasrvapi.h" #include "lsaadprovider.h" #include "lsasrvutils.h" #include "lsasrvcred.h" #include "lwldap.h" #include "lsaldap.h" //#include "lsadb.h" #include "adcache.h" #include "adcachespi.h" #include "addef.h" #include "media-sense.h" #include "adstruct.h" #include "adcfg.h" #include "adldapdef.h" #include "adnetapi.h" #include "lsadm.h" #include "lsadmengine.h" #include "lsadmwrap.h" #include "lsaum.h" #include "lsaumproc.h" #include "state_store.h" #include "adldap.h" #include "adldap_p.h" #include "batch.h" #include "unprov.h" #include "batch_marshal.h" #include "ad_marshal_group.h" #include "ad_marshal_nss_artefact.h" #include "ad_marshal_nss_artefact_p.h" #include "ad_marshal_user.h" #include "ad_marshal_user_p.h" #include "cellldap.h" #include "defldap.h" #include "enumstate.h" #include "machinepwd_p.h" #include "offline.h" #include "online.h" #include "providerstate.h" #include "provider-main.h" #include "offline-helper.h" #include "lsasqlite.h" #include "lsasqlite_p.h" #include "externs.h" #include "sqlcache_create.h" #include "sqlcache_p.h" #include "memcache_p.h" #include "specialdomain.h" #include "lsakrb5smb.h" #define LSASS_PARAMETERS_REGKEY "Services\\lsass\\Parameters" #define LSASS_PROVIDERS_REGKEY "Providers" #define AD_REGKEY "ActiveDirectory" #define AD_PROVIDER_REGKEY LSASS_PARAMETERS_REGKEY "\\" LSASS_PROVIDERS_REGKEY "\\" AD_REGKEY #define AD_PROVIDER_DATA_REGKEY "ProviderData" #define AD_LINKEDCELL_REGKEY "LinkedCell" #define AD_DOMAIN_TRUST_REGKEY "DomainTrust"