1 /* fetch.c - routines for fetching data at URLs */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1999-2007 The OpenLDAP Foundation.
6 * Portions Copyright 1999-2003 Kurt D. Zeilenga.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in the file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
17 /* This work was initially developed by Kurt D. Zeilenga for
18 * inclusion in OpenLDAP Software.
25 #include <ac/stdlib.h>
27 #include <ac/string.h>
28 #include <ac/socket.h>
38 #include "ldap_config.h"
43 LDAP_CONST char *urlstr )
47 if( strncasecmp( "file:", urlstr, sizeof("file:")-1 ) == 0 ) {
49 urlstr += sizeof("file:")-1;
51 /* we don't check for LDAP_DIRSEP since URLs should contain '/' */
52 if ( urlstr[0] == '/' && urlstr[1] == '/' ) {
54 /* path must be absolute if authority is present */
55 if ( urlstr[0] != '/' )
59 p = ber_strdup( urlstr );
61 /* But we should convert to LDAP_DIRSEP before use */
62 if ( LDAP_DIRSEP[0] != '/' ) {
64 while (( s = strchr( s, '/' )))
65 *s++ = LDAP_DIRSEP[0];
68 ldap_pvt_hex_unescape( p );
70 url = fopen( p, "rb" );
75 url = fetchGetURL( (char*) urlstr, "" );
85 LDAP_CONST char *urlstr,
98 url = ldif_open_url( urlstr );
106 while( (bytes = fread( buffer, 1, sizeof(buffer), url )) != 0 ) {
107 char *newp = ber_memrealloc( p, total + bytes + 1 );
114 AC_MEMCPY( &p[total], buffer, bytes );
121 char *newp = ber_memrealloc( p, 1 );