1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-12-01 06:26:11 +08:00
|
|
|
#include <stdlib.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-12-01 06:26:11 +08:00
|
|
|
#include <ac/ctype.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
1998-11-16 13:07:27 +08:00
|
|
|
#include <ac/unistd.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#include "ldapconfig.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "../slap.h"
|
|
|
|
#include "../back-ldbm/back-ldbm.h"
|
|
|
|
|
|
|
|
#define MAXARGS 100
|
|
|
|
|
|
|
|
static char *tailorfile;
|
|
|
|
static char *inputfile;
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage( char *name )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "usage: %s -i inputfile [-d debuglevel] [-f configfile] [-n databasenumber]\n", name );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
int
|
1998-08-09 08:43:13 +08:00
|
|
|
main( int argc, char **argv )
|
|
|
|
{
|
1999-03-06 14:33:34 +08:00
|
|
|
int i, stop;
|
|
|
|
char *buf;
|
1998-08-09 08:43:13 +08:00
|
|
|
char line[BUFSIZ], idbuf[BUFSIZ];
|
|
|
|
int lmax, lcur;
|
|
|
|
int dbnum;
|
|
|
|
ID id;
|
|
|
|
struct dbcache *db;
|
1998-11-22 17:33:30 +08:00
|
|
|
Backend *be = NULL;
|
1998-12-19 06:21:16 +08:00
|
|
|
struct ldbminfo *li;
|
1998-08-09 08:43:13 +08:00
|
|
|
struct berval bv;
|
|
|
|
struct berval *vals[2];
|
|
|
|
FILE *fp;
|
|
|
|
|
1998-09-17 11:38:36 +08:00
|
|
|
tailorfile = SLAPD_DEFAULT_CONFIGFILE;
|
1998-08-09 08:43:13 +08:00
|
|
|
dbnum = -1;
|
|
|
|
while ( (i = getopt( argc, argv, "d:f:i:n:" )) != EOF ) {
|
|
|
|
switch ( i ) {
|
|
|
|
case 'd': /* turn on debugging */
|
|
|
|
ldap_debug = atoi( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f': /* specify a tailor file */
|
|
|
|
tailorfile = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'i': /* input file */
|
|
|
|
inputfile = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'n': /* which config file db to index */
|
|
|
|
dbnum = atoi( optarg ) - 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage( argv[0] );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( inputfile == NULL ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
} else {
|
|
|
|
if ( freopen( inputfile, "r", stdin ) == NULL ) {
|
|
|
|
perror( inputfile );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initialize stuff and figure out which backend we're dealing with
|
|
|
|
*/
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
slap_init(SLAP_TOOL_MODE, "ldif2id2entry");
|
|
|
|
read_config( tailorfile );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if ( dbnum == -1 ) {
|
|
|
|
for ( dbnum = 0; dbnum < nbackends; dbnum++ ) {
|
|
|
|
if ( strcasecmp( backends[dbnum].be_type, "ldbm" )
|
|
|
|
== 0 ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( dbnum == nbackends ) {
|
|
|
|
fprintf( stderr, "No ldbm database found in config file\n" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
1998-08-09 10:33:01 +08:00
|
|
|
} else if ( dbnum < 0 || dbnum > (nbackends-1) ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
fprintf( stderr, "Database number selected via -n is out of range\n" );
|
|
|
|
fprintf( stderr, "Must be in the range 1 to %d (number of databases in the config file)\n", nbackends );
|
|
|
|
exit( 1 );
|
|
|
|
} else if ( strcasecmp( backends[dbnum].be_type, "ldbm" ) != 0 ) {
|
|
|
|
fprintf( stderr, "Database number %d selected via -n is not an ldbm database\n", dbnum );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
slap_startup(dbnum);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
be = &backends[dbnum];
|
|
|
|
|
1998-12-19 06:21:16 +08:00
|
|
|
/* disable write sync'ing */
|
|
|
|
li = (struct ldbminfo *) be->be_private;
|
|
|
|
li->li_dbcachewsync = 0;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( (db = ldbm_cache_open( be, "id2entry", LDBM_SUFFIX, LDBM_NEWDB ))
|
|
|
|
== NULL ) {
|
|
|
|
perror( "id2entry file" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
id = 0;
|
|
|
|
stop = 0;
|
|
|
|
buf = NULL;
|
|
|
|
lcur = lmax = 0;
|
|
|
|
vals[0] = &bv;
|
|
|
|
vals[1] = NULL;
|
|
|
|
while ( ! stop ) {
|
|
|
|
Datum key, data;
|
|
|
|
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( key );
|
|
|
|
ldbm_datum_init( data );
|
1998-12-18 20:28:47 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( fgets( line, sizeof(line), stdin ) != NULL ) {
|
|
|
|
int len, idlen;
|
|
|
|
|
|
|
|
len = strlen( line );
|
|
|
|
if ( buf == NULL || *buf == '\0' ) {
|
1999-02-23 01:57:22 +08:00
|
|
|
if (!isdigit((unsigned char) line[0])) {
|
1999-03-04 21:18:49 +08:00
|
|
|
sprintf( idbuf, "%ld\n", id + 1 );
|
1998-12-01 06:26:11 +08:00
|
|
|
idlen = strlen( idbuf );
|
|
|
|
} else {
|
|
|
|
id = atol(line) - 1;
|
|
|
|
idlen = 0;
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
idlen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( lcur + len + idlen + 1 > lmax ) {
|
|
|
|
lmax += BUFSIZ;
|
|
|
|
buf = (char *) ch_realloc( buf, lmax );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( idlen > 0 ) {
|
|
|
|
strcpy( buf + lcur, idbuf );
|
|
|
|
lcur += idlen;
|
|
|
|
}
|
|
|
|
strcpy( buf + lcur, line );
|
|
|
|
lcur += len;
|
|
|
|
} else {
|
|
|
|
stop = 1;
|
|
|
|
}
|
|
|
|
if ( line[0] == '\n' || stop && buf && *buf ) {
|
|
|
|
if ( *buf != '\n' ) {
|
1998-12-01 06:26:11 +08:00
|
|
|
int len;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
id++;
|
|
|
|
key.dptr = (char *) &id;
|
|
|
|
key.dsize = sizeof(ID);
|
|
|
|
data.dptr = buf;
|
1998-12-01 06:26:11 +08:00
|
|
|
len = strlen(buf);
|
|
|
|
if (buf[len - 1] == '\n')
|
|
|
|
buf[--len] = '\0';
|
|
|
|
data.dsize = len + 1;
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( ldbm_store( db->dbc_db, key, data,
|
|
|
|
LDBM_INSERT ) != 0 ) {
|
1998-11-20 20:15:05 +08:00
|
|
|
fputs("id2entry ldbm_store failed\n",
|
|
|
|
stderr);
|
1998-08-09 08:43:13 +08:00
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*buf = '\0';
|
|
|
|
lcur = 0;
|
|
|
|
line[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-04-06 09:55:11 +08:00
|
|
|
#ifdef SLAP_CLEANUP
|
|
|
|
ldbm_cache_close( be, db );
|
|
|
|
#endif
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
slap_shutdown(dbnum);
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
id++;
|
|
|
|
sprintf( line, "%s/NEXTID",
|
|
|
|
((struct ldbminfo *) be->be_private)->li_directory );
|
|
|
|
if ( (fp = fopen( line, "w" )) == NULL ) {
|
|
|
|
perror( line );
|
|
|
|
fprintf( stderr, "Could not write next id %ld\n", id );
|
|
|
|
} else {
|
|
|
|
fprintf( fp, "%ld\n", id );
|
|
|
|
fclose( fp );
|
|
|
|
}
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
slap_destroy();
|
|
|
|
|
1999-04-14 22:10:09 +08:00
|
|
|
return( 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|