2003-11-26 07:17:08 +08:00
|
|
|
/* ldapcompare.c -- LDAP compare tool */
|
2002-08-30 14:25:51 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 07:17:08 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1998-2004 The OpenLDAP Foundation.
|
2003-11-26 07:17:08 +08:00
|
|
|
* Portions Copyright 1998-2003 Kurt D. Zeilenga.
|
|
|
|
* Portions Copyright 1998-2001 Net Boolean Incorporated.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the
|
|
|
|
* University may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission. This
|
|
|
|
* software is provided ``as is'' without express or implied warranty.
|
|
|
|
*/
|
|
|
|
/* Portions Copyright 2002, F5 Networks, Inc, All rights reserved.
|
|
|
|
* This software is not subject to any license of F5 Networks.
|
|
|
|
* This is free software; you can redistribute and use it
|
|
|
|
* under the same terms as OpenLDAP itself.
|
|
|
|
*/
|
2003-11-26 10:58:56 +08:00
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was originally developed by Jeff Costlow (F5 Networks)
|
|
|
|
* based, in part, on existing LDAP tools and adapted for inclusion
|
2003-11-26 07:17:08 +08:00
|
|
|
* into OpenLDAP Software by Kurt D. Zeilenga.
|
|
|
|
*/
|
2002-01-29 15:33:11 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/stdlib.h>
|
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/unistd.h>
|
|
|
|
#include <ac/errno.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_IO_H
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <ldap.h>
|
|
|
|
|
|
|
|
#include "lutil.h"
|
|
|
|
#include "lutil_ldap.h"
|
|
|
|
#include "ldap_defaults.h"
|
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
|
|
|
|
static int quiet = 0;
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
usage( void )
|
2002-01-29 15:33:11 +08:00
|
|
|
{
|
2003-04-06 10:59:15 +08:00
|
|
|
fprintf( stderr, _("usage: %s [options] DN <attr:value|attr::b64value>\n"), prog);
|
|
|
|
fprintf( stderr, _("where:\n"));
|
|
|
|
fprintf( stderr, _(" DN\tDistinguished Name\n"));
|
|
|
|
fprintf( stderr, _(" attr\tassertion attribute\n"));
|
|
|
|
fprintf( stderr, _(" value\tassertion value\n"));
|
|
|
|
fprintf( stderr, _(" b64value\tbase64 encoding of assertion value\n"));
|
|
|
|
|
|
|
|
fprintf( stderr, _("Compare options:\n"));
|
2003-04-06 11:27:52 +08:00
|
|
|
fprintf( stderr, _(" -z Quiet mode,"
|
|
|
|
" don't print anything, use return values\n"));
|
2002-12-13 00:32:26 +08:00
|
|
|
tool_common_usage();
|
2002-01-29 15:33:11 +08:00
|
|
|
exit( EXIT_FAILURE );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int docompare LDAP_P((
|
|
|
|
LDAP *ld,
|
|
|
|
char *dn,
|
|
|
|
char *attr,
|
|
|
|
struct berval *bvalue,
|
|
|
|
int quiet,
|
|
|
|
LDAPControl **sctrls,
|
|
|
|
LDAPControl **cctrls));
|
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
|
2003-01-21 04:11:57 +08:00
|
|
|
const char options[] = "z"
|
|
|
|
"Cd:D:e:h:H:IkKMnO:p:P:QR:U:vVw:WxX:y:Y:Z";
|
2002-01-29 15:33:11 +08:00
|
|
|
|
|
|
|
int
|
2002-12-13 00:32:26 +08:00
|
|
|
handle_private_option( int i )
|
2002-01-29 15:33:11 +08:00
|
|
|
{
|
2002-12-13 00:32:26 +08:00
|
|
|
switch ( i ) {
|
2002-08-30 15:05:12 +08:00
|
|
|
#if 0
|
2002-12-13 00:32:26 +08:00
|
|
|
char *control, *cvalue;
|
|
|
|
int crit;
|
2004-03-13 06:34:07 +08:00
|
|
|
case 'E': /* compare extensions */
|
2003-01-21 04:11:57 +08:00
|
|
|
if( protocol == LDAP_VERSION2 ) {
|
2003-04-06 10:59:15 +08:00
|
|
|
fprintf( stderr, _("%s: -E incompatible with LDAPv%d\n"),
|
2003-01-21 04:11:57 +08:00
|
|
|
prog, protocol );
|
2002-12-13 00:32:26 +08:00
|
|
|
exit( EXIT_FAILURE );
|
2002-08-30 05:36:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* should be extended to support comma separated list of
|
|
|
|
* [!]key[=value] parameters, e.g. -E !foo,bar=567
|
|
|
|
*/
|
|
|
|
|
|
|
|
crit = 0;
|
|
|
|
cvalue = NULL;
|
|
|
|
if( optarg[0] == '!' ) {
|
|
|
|
crit = 1;
|
|
|
|
optarg++;
|
|
|
|
}
|
|
|
|
|
|
|
|
control = strdup( optarg );
|
|
|
|
if ( (cvalue = strchr( control, '=' )) != NULL ) {
|
|
|
|
*cvalue++ = '\0';
|
|
|
|
}
|
2004-03-13 06:34:07 +08:00
|
|
|
fprintf( stderr, _("Invalid compare extension name: %s\n"), control );
|
2002-12-13 00:32:26 +08:00
|
|
|
usage();
|
2002-08-30 15:05:12 +08:00
|
|
|
#endif
|
2002-01-29 15:33:11 +08:00
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
case 'z':
|
|
|
|
quiet = 1;
|
|
|
|
break;
|
2002-08-30 05:36:36 +08:00
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2002-08-30 05:36:36 +08:00
|
|
|
|
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
int
|
|
|
|
main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
char *compdn = NULL, *attrs = NULL;
|
|
|
|
char *sep;
|
|
|
|
int rc;
|
|
|
|
LDAP *ld = NULL;
|
|
|
|
struct berval bvalue = { 0, NULL };
|
2002-12-02 23:46:53 +08:00
|
|
|
|
2003-04-06 10:59:15 +08:00
|
|
|
tool_init();
|
2002-12-13 00:32:26 +08:00
|
|
|
prog = lutil_progname( "ldapcompare", argc, argv );
|
2002-01-29 15:33:11 +08:00
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
tool_args( argc, argv );
|
2002-01-29 15:33:11 +08:00
|
|
|
|
|
|
|
if ( argc - optind != 2 ) {
|
2002-12-13 00:32:26 +08:00
|
|
|
usage();
|
2002-01-29 15:33:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
compdn = argv[optind++];
|
|
|
|
attrs = argv[optind++];
|
|
|
|
|
|
|
|
/* user passed in only 2 args, the last one better be in
|
|
|
|
* the form attr:value or attr::b64value
|
|
|
|
*/
|
|
|
|
sep = strchr(attrs, ':');
|
|
|
|
if (!sep) {
|
2002-12-13 00:32:26 +08:00
|
|
|
usage();
|
2002-01-29 15:33:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
*sep++='\0';
|
|
|
|
if ( *sep != ':' ) {
|
|
|
|
bvalue.bv_val = strdup( sep );
|
|
|
|
bvalue.bv_len = strlen( bvalue.bv_val );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* it's base64 encoded. */
|
|
|
|
bvalue.bv_val = malloc( strlen( &sep[1] ));
|
|
|
|
bvalue.bv_len = lutil_b64_pton( &sep[1],
|
2003-05-02 21:29:28 +08:00
|
|
|
(unsigned char *) bvalue.bv_val, strlen( &sep[1] ));
|
2002-01-29 15:33:11 +08:00
|
|
|
|
2003-01-19 21:10:17 +08:00
|
|
|
if (bvalue.bv_len == (ber_len_t)-1) {
|
2003-04-06 10:59:15 +08:00
|
|
|
fprintf(stderr, _("base64 decode error\n"));
|
2002-01-29 15:33:11 +08:00
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
ld = tool_conn_setup( 0, 0 );
|
2002-01-29 15:33:11 +08:00
|
|
|
|
Patch: 'ldapmodify -y file' reads password from file (ITS#2031)
================
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.
================
Adapted by Kurt Zeilenga for inclusion in OpenLDAP. My comments are
marked with enclosed with square brackets (e.g. [Kurt's comment] below.
================
If I run ldapmodify & co from a script, I don't want to use '-W password'
because the password shows up in the output of 'ps' for everyone,
and I can't pipe the password to 'ldapmodify -w' because -w uses
getpassphrase() which reads from the tty instead of stdin.
So I added '-y file' which reads the password from file. The programs
exit if the file cannot be read.
[Complete contents of file is used as password. Use:
echo -n "secret" > password
to create a file with "secret" as the password. The -n avoids
adding a newline (which would invalidate the password). Note
that echo is a builtin and hence its arguments are not visible
to 'ps'.]
I changed ldapmodify, ldapmodrdn, ldapdelete, ldapsearch, ldapcompare.
I did not bother to change ldappasswd and ldapwhoami, because they
prompt for many passwords. [I fixed up ldapwhoami.]
Rerun autoconf after applying this patch. [Done.]
Note: I do not know if Windows NT has fstat(), so I set HAVE_FSTAT to
undef in portable.nt. (fstat() is used to warn if the file is publicly
readable or writeable.) [I used fstat() to set the buffer size to
read.]
[Note: using the contents of a file extends the tools to support
passwords which could not normally be provided using getpassphrase()
or via the command line.]
Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, Aug 2002.
[Kurt D. Zeilenga <kurt@openldap.org>, Aug 2002.]
2002-08-24 13:47:17 +08:00
|
|
|
if ( pw_file || want_bindpw ) {
|
|
|
|
if ( pw_file ) {
|
|
|
|
rc = lutil_get_filed_password( pw_file, &passwd );
|
|
|
|
if( rc ) return EXIT_FAILURE;
|
|
|
|
} else {
|
2003-04-06 10:59:15 +08:00
|
|
|
passwd.bv_val = getpassphrase( _("Enter LDAP Password: ") );
|
Patch: 'ldapmodify -y file' reads password from file (ITS#2031)
================
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.
================
Adapted by Kurt Zeilenga for inclusion in OpenLDAP. My comments are
marked with enclosed with square brackets (e.g. [Kurt's comment] below.
================
If I run ldapmodify & co from a script, I don't want to use '-W password'
because the password shows up in the output of 'ps' for everyone,
and I can't pipe the password to 'ldapmodify -w' because -w uses
getpassphrase() which reads from the tty instead of stdin.
So I added '-y file' which reads the password from file. The programs
exit if the file cannot be read.
[Complete contents of file is used as password. Use:
echo -n "secret" > password
to create a file with "secret" as the password. The -n avoids
adding a newline (which would invalidate the password). Note
that echo is a builtin and hence its arguments are not visible
to 'ps'.]
I changed ldapmodify, ldapmodrdn, ldapdelete, ldapsearch, ldapcompare.
I did not bother to change ldappasswd and ldapwhoami, because they
prompt for many passwords. [I fixed up ldapwhoami.]
Rerun autoconf after applying this patch. [Done.]
Note: I do not know if Windows NT has fstat(), so I set HAVE_FSTAT to
undef in portable.nt. (fstat() is used to warn if the file is publicly
readable or writeable.) [I used fstat() to set the buffer size to
read.]
[Note: using the contents of a file extends the tools to support
passwords which could not normally be provided using getpassphrase()
or via the command line.]
Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, Aug 2002.
[Kurt D. Zeilenga <kurt@openldap.org>, Aug 2002.]
2002-08-24 13:47:17 +08:00
|
|
|
passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
|
|
|
|
}
|
2002-01-29 15:33:11 +08:00
|
|
|
}
|
|
|
|
|
2002-12-13 00:32:26 +08:00
|
|
|
tool_bind( ld );
|
2002-01-29 15:33:11 +08:00
|
|
|
|
2003-07-30 18:21:16 +08:00
|
|
|
if ( assertion || authzid || manageDSAit || noop ) {
|
2002-12-13 00:32:26 +08:00
|
|
|
tool_server_controls( ld, NULL, 0 );
|
2003-07-30 18:21:16 +08:00
|
|
|
}
|
2002-01-29 15:33:11 +08:00
|
|
|
|
|
|
|
if ( verbose ) {
|
2003-04-06 10:59:15 +08:00
|
|
|
fprintf( stderr, _("DN:%s, attr:%s, value:%s\n"),
|
2002-01-29 15:33:11 +08:00
|
|
|
compdn, attrs, sep );
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = docompare( ld, compdn, attrs, &bvalue, quiet, NULL, NULL );
|
|
|
|
|
|
|
|
free( bvalue.bv_val );
|
|
|
|
|
2003-12-19 03:15:57 +08:00
|
|
|
ldap_unbind_ext( ld, NULL, NULL );
|
2002-01-29 15:33:11 +08:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int docompare(
|
|
|
|
LDAP *ld,
|
|
|
|
char *dn,
|
|
|
|
char *attr,
|
|
|
|
struct berval *bvalue,
|
|
|
|
int quiet,
|
|
|
|
LDAPControl **sctrls,
|
|
|
|
LDAPControl **cctrls )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if ( not ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = ldap_compare_ext_s( ld, dn, attr, bvalue,
|
|
|
|
sctrls, cctrls );
|
|
|
|
|
|
|
|
/* if we were told to be quiet, use the return value. */
|
|
|
|
if ( !quiet ) {
|
|
|
|
if ( rc == LDAP_COMPARE_TRUE ) {
|
2003-04-06 10:59:15 +08:00
|
|
|
printf(_("TRUE\n"));
|
2002-01-29 15:33:11 +08:00
|
|
|
} else if ( rc == LDAP_COMPARE_FALSE ) {
|
2003-04-06 10:59:15 +08:00
|
|
|
printf(_("FALSE\n"));
|
2002-01-29 15:33:11 +08:00
|
|
|
} else {
|
2003-12-19 07:24:49 +08:00
|
|
|
printf(_("UNDEFINED\n"));
|
2002-01-29 15:33:11 +08:00
|
|
|
ldap_perror( ld, "ldap_compare" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|