2004-08-13 07:10:46 +00:00
/*
Unix SMB / CIFS mplementation .
LDAP protocol helper functions for SAMBA
Copyright ( C ) Stefan Metzmacher 2004
Copyright ( C ) Simo Sorce 2004
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 0213 9 , USA .
*/
2004-08-12 08:00:45 +00:00
# include "includes.h"
2005-02-10 07:08:40 +00:00
# include "libcli/ldap/ldap.h"
2004-08-12 08:00:45 +00:00
2004-08-12 22:25:01 +00:00
NTSTATUS torture_ldap_bind ( struct ldap_connection * conn , const char * userdn , const char * password )
{
2005-06-16 05:39:40 +00:00
NTSTATUS status ;
2004-08-12 22:25:01 +00:00
2005-06-16 05:39:40 +00:00
status = ldap_bind_simple ( conn , userdn , password ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Failed to bind with provided credentials - %s \n " ,
nt_errstr ( status ) ) ;
2004-08-12 22:25:01 +00:00
}
2005-06-16 05:39:40 +00:00
return status ;
2004-08-13 05:26:38 +00:00
}
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 04:14:06 +00:00
NTSTATUS torture_ldap_bind_sasl ( struct ldap_connection * conn ,
struct cli_credentials * creds )
2004-08-13 05:26:38 +00:00
{
2005-06-16 05:39:40 +00:00
NTSTATUS status ;
2004-08-13 05:26:38 +00:00
2005-06-16 05:39:40 +00:00
status = ldap_bind_sasl ( conn , creds ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Failed sasl bind with provided credentials - %s \n " ,
nt_errstr ( status ) ) ;
2004-08-12 22:25:01 +00:00
}
2005-06-16 05:39:40 +00:00
return status ;
2004-08-12 22:25:01 +00:00
}
2004-08-12 08:00:45 +00:00
/* open a ldap connection to a server */
2004-11-06 20:15:39 +00:00
NTSTATUS torture_ldap_connection ( TALLOC_CTX * mem_ctx , struct ldap_connection * * conn ,
2005-05-11 14:38:13 +00:00
const char * url )
2004-08-12 08:00:45 +00:00
{
2005-06-16 05:39:40 +00:00
NTSTATUS status ;
2004-08-12 08:00:45 +00:00
if ( ! url ) {
printf ( " You must specify a url string \n " ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
2005-06-16 05:39:40 +00:00
* conn = ldap_new_connection ( mem_ctx , NULL ) ;
status = ldap_connect ( * conn , url ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Failed to connect to ldap server '%s' - %s \n " ,
url , nt_errstr ( status ) ) ;
2004-08-12 08:00:45 +00:00
}
2005-06-16 05:39:40 +00:00
return status ;
2005-05-11 14:38:13 +00:00
}
/* open a ldap connection to a server */
NTSTATUS torture_ldap_connection2 ( TALLOC_CTX * mem_ctx , struct ldap_connection * * conn ,
const char * url , const char * userdn , const char * password )
{
2005-06-16 05:39:40 +00:00
NTSTATUS status ;
2005-05-11 14:38:13 +00:00
status = torture_ldap_connection ( mem_ctx , conn , url ) ;
NT_STATUS_NOT_OK_RETURN ( status ) ;
2005-06-16 05:39:40 +00:00
status = ldap_bind_simple ( * conn , userdn , password ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Failed a simple ldap bind - %s \n " , ldap_errstr ( * conn , status ) ) ;
2004-08-12 08:00:45 +00:00
}
2005-06-16 05:39:40 +00:00
return status ;
2004-08-12 08:00:45 +00:00
}
/* close an ldap connection to a server */
NTSTATUS torture_ldap_close ( struct ldap_connection * conn )
{
2005-06-16 05:39:40 +00:00
talloc_free ( conn ) ;
2004-08-12 08:00:45 +00:00
return NT_STATUS_OK ;
}