mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
7e6ad5100c
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.
99 lines
1.8 KiB
C
99 lines
1.8 KiB
C
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
#include <ac/unistd.h> /* Get read() */
|
|
|
|
#include "lber.h"
|
|
#include "ldap.h"
|
|
#include "ldif.h"
|
|
|
|
int ldap_syslog;
|
|
int ldap_syslog_level;
|
|
|
|
|
|
static void
|
|
usage( char *name )
|
|
{
|
|
fprintf( stderr, "usage: %s [-b] <attrtype>\n", name );
|
|
exit( 1 );
|
|
}
|
|
|
|
int
|
|
main( int argc, char **argv )
|
|
{
|
|
char buf[BUFSIZ];
|
|
char *type, *out;
|
|
int len, binary = 0;
|
|
|
|
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... */
|
|
while ( fgets( buf, sizeof(buf), stdin ) != NULL ) {
|
|
if( buf[len=strlen(buf)] == '\n') buf[len] = '\0';
|
|
|
|
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 );
|
|
}
|