1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include "lber.h"
|
|
|
|
#include "ldap.h"
|
|
|
|
#include "ldif.h"
|
|
|
|
|
|
|
|
int ldap_syslog;
|
|
|
|
int ldap_syslog_level;
|
|
|
|
|
|
|
|
|
|
|
|
usage( name )
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
fprintf( stderr, "usage: %s [-b] <attrtype>\n", name );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
main( argc, argv )
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
char *type, *out;
|
1998-08-20 10:18:28 +08:00
|
|
|
int len, binary = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if (argc < 2 || argc > 3 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
|
|
|
if ( argc == 3 ) {
|
|
|
|
if ( strcmp( argv[1], "-b" ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
} else {
|
|
|
|
binary = 1;
|
|
|
|
type = argv[2];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ( strcmp( argv[1], "-b" ) == 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
|
|
|
type = argv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the -b flag was used, read single binary value from stdin */
|
|
|
|
if ( binary ) {
|
|
|
|
char *val;
|
|
|
|
int nread, max, cur;
|
|
|
|
|
|
|
|
if (( val = (char *) malloc( BUFSIZ )) == NULL ) {
|
|
|
|
perror( "malloc" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
max = BUFSIZ;
|
|
|
|
cur = 0;
|
|
|
|
while ( (nread = read( 0, buf, BUFSIZ )) != 0 ) {
|
|
|
|
if ( nread + cur > max ) {
|
|
|
|
max += BUFSIZ;
|
|
|
|
if (( val = (char *) realloc( val, max )) ==
|
|
|
|
NULL ) {
|
|
|
|
perror( "realloc" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy( val + cur, buf, nread );
|
|
|
|
cur += nread;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (( out = ldif_type_and_value( type, val, cur )) == NULL ) {
|
|
|
|
perror( "ldif_type_and_value" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
fputs( out, stdout );
|
|
|
|
free( out );
|
|
|
|
free( val );
|
|
|
|
exit( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not binary: one value per line... */
|
1998-08-20 10:18:28 +08:00
|
|
|
while ( fgets( buf, sizeof(buf), stdin ) != NULL ) {
|
|
|
|
if( buf[len=strlen(buf)] == '\n') buf[len] = '\0';
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if (( out = ldif_type_and_value( type, buf, strlen( buf ) ))
|
|
|
|
== NULL ) {
|
|
|
|
perror( "ldif_type_and_value" );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
fputs( out, stdout );
|
|
|
|
free( out );
|
|
|
|
}
|
|
|
|
|
|
|
|
exit( 0 );
|
|
|
|
}
|