2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2009 The OpenLDAP Foundation.
5 * Portions Copyright 1998-2003 Kurt D. Zeilenga.
6 * Portions Copyright 2003 IBM Corporation.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
18 * This work was initially developed by Pierangelo Masarati for inclusion
19 * in OpenLDAP Software. Code portions borrowed from slapcat.c;
20 * contributors are Kurt Zeilenga and Jong Hyuk Choi
27 #include "ac/stdlib.h"
29 #include "ac/socket.h"
30 #include "ac/string.h"
32 #include "slapcommon.h"
35 static volatile sig_atomic_t gotsig;
38 slapcat_sig( int sig )
44 slapschema( int argc, char **argv )
47 int rc = EXIT_SUCCESS;
48 const char *progname = "slapschema";
49 Connection conn = { 0 };
50 OperationBuffer opbuf;
54 slap_tool_init( progname, SLAPCAT, argc, argv );
57 (void) SIGNAL( SIGPIPE, slapcat_sig );
60 (void) SIGNAL( SIGHUP, slapcat_sig );
62 (void) SIGNAL( SIGINT, slapcat_sig );
63 (void) SIGNAL( SIGTERM, slapcat_sig );
65 if( !be->be_entry_open ||
66 !be->be_entry_close ||
67 !be->be_entry_first ||
71 fprintf( stderr, "%s: database doesn't support necessary operations.\n",
76 if( be->be_entry_open( be, 0 ) != 0 ) {
77 fprintf( stderr, "%s: could not open database.\n",
82 thrctx = ldap_pvt_thread_pool_context();
83 connection_fake_init( &conn, &opbuf, thrctx );
85 op->o_tmpmemctx = NULL;
88 for ( id = be->be_entry_first( be );
90 id = be->be_entry_next( be ) )
93 char textbuf[SLAP_TEXT_BUFLEN];
94 size_t textlen = sizeof(textbuf);
95 const char *text = NULL;
100 e = be->be_entry_get( be, id );
102 printf("# no data for entry id=%08lx\n\n", (long) id );
104 if( continuemode ) continue;
108 if( sub_ndn.bv_len && !dnIsSuffix( &e->e_nname, &sub_ndn ) ) {
109 be_entry_release_r( op, e );
113 if( filter != NULL ) {
114 int rc = test_filter( NULL, e, filter );
115 if( rc != LDAP_COMPARE_TRUE ) {
116 be_entry_release_r( op, e );
122 printf( "# id=%08lx\n", (long) id );
125 rc = entry_schema_check( op, e, NULL, 0, 0, NULL,
126 &text, textbuf, textlen );
127 if ( rc != LDAP_SUCCESS ) {
128 fprintf( ldiffp->fp, "# (%d) %s%s%s\n",
129 rc, ldap_err2string( rc ),
132 fprintf( ldiffp->fp, "dn: %s\n\n", e->e_name.bv_val );
135 be_entry_release_r( op, e );
138 be->be_entry_close( be );
140 if ( slap_tool_destroy() )