]> git.sur5r.net Git - openldap/blob - servers/slapd/slapschema.c
check the value of the olcSubordinate attribute
[openldap] / servers / slapd / slapschema.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2009 The OpenLDAP Foundation.
5  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
6  * Portions Copyright 2003 IBM Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
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>.
16  */
17 /* ACKNOWLEDGEMENTS:
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
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include "ac/stdlib.h"
28 #include "ac/ctype.h"
29 #include "ac/socket.h"
30 #include "ac/string.h"
31
32 #include "slapcommon.h"
33 #include "ldif.h"
34
35 static volatile sig_atomic_t gotsig;
36
37 static RETSIGTYPE
38 slapcat_sig( int sig )
39 {
40         gotsig=1;
41 }
42
43 int
44 slapschema( int argc, char **argv )
45 {
46         ID id;
47         int rc = EXIT_SUCCESS;
48         const char *progname = "slapschema";
49         Connection conn = { 0 };
50         OperationBuffer opbuf;
51         Operation *op = NULL;
52
53         slap_tool_init( progname, SLAPCAT, argc, argv );
54
55 #ifdef SIGPIPE
56         (void) SIGNAL( SIGPIPE, slapcat_sig );
57 #endif
58 #ifdef SIGHUP
59         (void) SIGNAL( SIGHUP, slapcat_sig );
60 #endif
61         (void) SIGNAL( SIGINT, slapcat_sig );
62         (void) SIGNAL( SIGTERM, slapcat_sig );
63
64         if( !be->be_entry_open ||
65                 !be->be_entry_close ||
66                 !be->be_entry_first ||
67                 !be->be_entry_next ||
68                 !be->be_entry_get )
69         {
70                 fprintf( stderr, "%s: database doesn't support necessary operations.\n",
71                         progname );
72                 exit( EXIT_FAILURE );
73         }
74
75         if( be->be_entry_open( be, 0 ) != 0 ) {
76                 fprintf( stderr, "%s: could not open database.\n",
77                         progname );
78                 exit( EXIT_FAILURE );
79         }
80
81         connection_fake_init( &conn, &opbuf, &conn );
82         op = &opbuf.ob_op;
83         op->o_tmpmemctx = NULL;
84         op->o_bd = be;
85
86         for ( id = be->be_entry_first( be );
87                 id != NOID;
88                 id = be->be_entry_next( be ) )
89         {
90                 Entry* e;
91                 char textbuf[SLAP_TEXT_BUFLEN];
92                 size_t textlen = sizeof(textbuf);
93                 const char *text = NULL;
94
95                 if ( gotsig )
96                         break;
97
98                 e = be->be_entry_get( be, id );
99                 if ( e == NULL ) {
100                         printf("# no data for entry id=%08lx\n\n", (long) id );
101                         rc = EXIT_FAILURE;
102                         if( continuemode ) continue;
103                         break;
104                 }
105
106                 if( sub_ndn.bv_len && !dnIsSuffix( &e->e_nname, &sub_ndn ) ) {
107                         be_entry_release_r( op, e );
108                         continue;
109                 }
110
111                 if( filter != NULL ) {
112                         int rc = test_filter( NULL, e, filter );
113                         if( rc != LDAP_COMPARE_TRUE ) {
114                                 be_entry_release_r( op, e );
115                                 continue;
116                         }
117                 }
118
119                 if( verbose ) {
120                         printf( "# id=%08lx\n", (long) id );
121                 }
122
123                 rc = entry_schema_check( op, e, NULL, 0, 0, NULL,
124                         &text, textbuf, textlen );
125                 if ( rc != LDAP_SUCCESS ) {
126                         fprintf( ldiffp->fp, "# (%d) %s%s%s\n",
127                                 rc, ldap_err2string( rc ),
128                                 text ? ": " : "",
129                                 text ? text : "" );
130                         fprintf( ldiffp->fp, "dn: %s\n\n", e->e_name.bv_val );
131                 }
132
133                 be_entry_release_r( op, e );
134         }
135
136         be->be_entry_close( be );
137
138         if ( slap_tool_destroy() )
139                 rc = EXIT_FAILURE;
140
141         return rc;
142 }