summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2003-04-03 03:30:25 +0000
committerJim McDonough <jmcd@samba.org>2003-04-03 03:30:25 +0000
commit77dc0bc6bfdd2323cea3b7368abf8d7accba0697 (patch)
tree68fb17c4c4068c2abcd3549e524257241c5a4003 /source3/include
parent28ff00ab40089882957d230161c4e9ededf0965d (diff)
downloadsamba-77dc0bc6bfdd2323cea3b7368abf8d7accba0697.tar.gz
samba-77dc0bc6bfdd2323cea3b7368abf8d7accba0697.tar.bz2
samba-77dc0bc6bfdd2323cea3b7368abf8d7accba0697.zip
The ldap idmap backend from Anthony Liguori (aliguori@us.ibm.com):
This patch moves the ldap routines out of passdb into a generic library and implements an LDAP backend for IDMAP. THe backend can be enabled with "idmap backend = ldap" in smb.conf. THere are also schema changes to make sure to update teh ldap schema files. (This used to be commit 87c7c582c60521da3a93d997386fe79935012aea)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/includes.h4
-rw-r--r--source3/include/smb_ldap.h59
2 files changed, 63 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index de87f82709..bf71ed54cf 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -856,6 +856,10 @@ struct functable {
struct printjob;
+struct smb_ldap_privates;
+
+struct smb_ldap_privates;
+
/***** automatically generated prototypes *****/
#ifndef NO_PROTO_H
#include "proto.h"
diff --git a/source3/include/smb_ldap.h b/source3/include/smb_ldap.h
new file mode 100644
index 0000000000..1a30b853e7
--- /dev/null
+++ b/source3/include/smb_ldap.h
@@ -0,0 +1,59 @@
+/*
+ Unix SMB/CIFS implementation.
+ LDAP protocol helper functions for SAMBA
+ Copyright (C) Jean François Micouleau 1998
+ Copyright (C) Gerald Carter 2001
+ Copyright (C) Shahms King 2001
+ Copyright (C) Andrew Bartlett 2002
+ Copyright (C) Stefan (metze) Metzmacher 2002
+ Copyright (C) Jim McDonough 2003
+
+ 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, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef SMB_LDAP_H
+#define SMB_LDAP_H
+
+#ifdef HAVE_LDAP
+
+#include <lber.h>
+#include <ldap.h>
+
+struct smb_ldap_privates {
+
+ /* Former statics */
+ LDAP *ldap_struct;
+ LDAPMessage *result;
+ LDAPMessage *entry;
+ int index;
+
+ time_t last_ping;
+ /* retrive-once info */
+ const char *uri;
+
+ BOOL permit_non_unix_accounts;
+
+ uint32 low_nua_rid;
+ uint32 high_nua_rid;
+
+ char *bind_dn;
+ char *bind_secret;
+
+ struct smb_ldap_privates *next;
+};
+
+#endif
+#endif