mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
403f4479bc
Replace old Id as needed (back-tcl). Leave updating of contribWare to contributors (for now).
94 lines
1.5 KiB
C
94 lines
1.5 KiB
C
/* line64.c - routines for dealing with the slapd line format */
|
|
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/stdlib.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
#include <ac/time.h>
|
|
|
|
#ifdef HAVE_FETCH
|
|
#include <fetch.h>
|
|
#endif
|
|
|
|
#include "ldap_log.h"
|
|
#include "lber_pvt.h"
|
|
#include "ldap_pvt.h"
|
|
#include "ldap_config.h"
|
|
#include "ldif.h"
|
|
|
|
int
|
|
ldif_fetch_url(
|
|
LDAP_CONST char *urlstr,
|
|
char **valuep,
|
|
ber_len_t *vlenp
|
|
)
|
|
{
|
|
FILE *url;
|
|
char buffer[1024];
|
|
char *p = NULL;
|
|
size_t total;
|
|
size_t bytes;
|
|
|
|
*valuep = NULL;
|
|
*vlenp = 0;
|
|
|
|
#ifdef HAVE_FETCH
|
|
url = fetchGetURL( (char*) urlstr, "" );
|
|
|
|
#else
|
|
if( strncasecmp( "file://", urlstr, sizeof("file://")-1 ) == 0 ) {
|
|
p = strchr( &urlstr[sizeof("file://")-1], '/' );
|
|
if( p == NULL ) {
|
|
return -1;
|
|
}
|
|
|
|
if( *p != *LDAP_DIRSEP ) {
|
|
/* skip over false root */
|
|
p++;
|
|
}
|
|
|
|
p = ber_strdup( p );
|
|
ldap_pvt_hex_unescape( p );
|
|
|
|
url = fopen( p, "r" );
|
|
|
|
} else {
|
|
return -1;
|
|
}
|
|
#endif
|
|
|
|
if( url == NULL ) {
|
|
return -1;
|
|
}
|
|
|
|
total = 0;
|
|
|
|
while( (bytes = fread( buffer, 1, sizeof(buffer), url )) != 0 ) {
|
|
char *newp = ber_memrealloc( p, total + bytes );
|
|
if( newp == NULL ) {
|
|
ber_memfree( p );
|
|
fclose( url );
|
|
return -1;
|
|
}
|
|
newp = p;
|
|
SAFEMEMCPY( &p[total], buffer, bytes );
|
|
total += bytes;
|
|
}
|
|
|
|
fclose( url );
|
|
|
|
*valuep = p;
|
|
*vlenp = total;
|
|
|
|
return 0;
|
|
}
|