]> git.sur5r.net Git - openldap/blob - tests/progs/slapd-read.c
Made dnNormalize() do Unicode normalization and case folding.
[openldap] / tests / progs / slapd-read.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #include "portable.h"
7
8 #include <stdio.h>
9
10 #include <ac/stdlib.h>
11
12 #include <ac/ctype.h>
13 #include <ac/param.h>
14 #include <ac/socket.h>
15 #include <ac/string.h>
16 #include <ac/unistd.h>
17 #include <ac/wait.h>
18
19 #include <ldap.h>
20
21 #define LOOPS   100
22
23 static void
24 do_read( char *host, int port, char *entry, int maxloop );
25
26 static void
27 usage( char *name )
28 {
29         fprintf( stderr, "usage: %s [-h <host>] -p port -e <entry> [-l <loops>]\n",
30                         name );
31         exit( EXIT_FAILURE );
32 }
33
34 int
35 main( int argc, char **argv )
36 {
37         int             i;
38         char        *host = "localhost";
39         int                     port = -1;
40         char            *entry = NULL;
41         int                     loops = LOOPS;
42
43         while ( (i = getopt( argc, argv, "h:p:e:l:" )) != EOF ) {
44                 switch( i ) {
45                         case 'h':               /* the servers host */
46                                 host = strdup( optarg );
47                         break;
48
49                         case 'p':               /* the servers port */
50                                 port = atoi( optarg );
51                                 break;
52
53                         case 'e':               /* file with entry search request */
54                                 entry = strdup( optarg );
55                                 break;
56
57                         case 'l':               /* the number of loops */
58                                 loops = atoi( optarg );
59                                 break;
60
61                         default:
62                                 usage( argv[0] );
63                                 break;
64                 }
65         }
66
67         if (( entry == NULL ) || ( port == -1 ))
68                 usage( argv[0] );
69
70         if ( *entry == '\0' ) {
71
72                 fprintf( stderr, "%s: invalid EMPTY entry DN.\n",
73                                 argv[0] );
74                 exit( EXIT_FAILURE );
75
76         }
77
78         do_read( host, port, entry, ( 4 * loops ));
79
80         exit( EXIT_SUCCESS );
81 }
82
83
84 static void
85 do_read( char *host, int port, char *entry, int maxloop )
86 {
87         LDAP    *ld;
88         int     i;
89         char    *attrs[] = { "1.1", NULL };
90         pid_t   pid = getpid();
91
92         if (( ld = ldap_init( host, port )) == NULL ) {
93                 perror( "ldap_init" );
94                 exit( EXIT_FAILURE );
95         }
96
97         if ( ldap_bind_s( ld, NULL, NULL, LDAP_AUTH_SIMPLE ) != LDAP_SUCCESS ) {
98                 ldap_perror( ld, "ldap_bind" );
99                  exit( EXIT_FAILURE );
100         }
101
102
103         fprintf( stderr, "PID=%ld - Read(%d): entry=\"%s\".\n",
104                  (long) pid, maxloop, entry );
105
106         for ( i = 0; i < maxloop; i++ ) {
107                 LDAPMessage *res;
108                 int         rc;
109
110                 if (( rc = ldap_search_s( ld, entry, LDAP_SCOPE_BASE,
111                                 NULL, attrs, 1, &res )) != LDAP_SUCCESS ) {
112
113                         ldap_perror( ld, "ldap_read" );
114                         if ( rc != LDAP_NO_SUCH_OBJECT ) break;
115                         continue;
116
117                 }
118
119                 ldap_msgfree( res );
120         }
121
122         fprintf( stderr, " PID=%ld - Read done.\n", (long) pid );
123
124         ldap_unbind( ld );
125 }
126
127