X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_url.h;h=c996f3fcc3915ea92860727270599066dfa2216e;hb=d94a5a026b4c671f0a9c53d7d20dfdfa9fc9be53;hp=7804ed9b078abd56cc55321a794b1399ca196eba;hpb=d3fe7f28797d4dba65ffcdd60bf932e758a48a9e;p=vlc diff --git a/include/vlc_url.h b/include/vlc_url.h index 7804ed9b07..c996f3fcc3 100644 --- a/include/vlc_url.h +++ b/include/vlc_url.h @@ -25,7 +25,7 @@ #ifndef __VLC_URL_H # define __VLC_URL_H -typedef struct +struct vlc_url_t { char *psz_protocol; char *psz_username; @@ -38,7 +38,13 @@ typedef struct char *psz_option; char *psz_buffer; /* to be freed */ -} vlc_url_t; +}; + +VLC_EXPORT( char *, unescape_URI_duplicate, ( const char *psz ) ); +VLC_EXPORT( void, unescape_URI, ( char *psz ) ); +VLC_EXPORT( char *, decode_URI_duplicate, ( const char *psz ) ); +VLC_EXPORT( void, decode_URI, ( char *psz ) ); +VLC_EXPORT( char *, encode_URI_component, ( const char *psz ) ); /***************************************************************************** * vlc_UrlParse: @@ -53,6 +59,7 @@ static inline void vlc_UrlParse( vlc_url_t *url, const char *psz_url, char *psz_dup; char *psz_parse; char *p; + char *p2; url->psz_protocol = NULL; url->psz_username = NULL; @@ -69,7 +76,23 @@ static inline void vlc_UrlParse( vlc_url_t *url, const char *psz_url, } url->psz_buffer = psz_parse = psz_dup = strdup( psz_url ); + /* Search a valid protocol */ p = strstr( psz_parse, ":/" ); + if( p != NULL ) + { + char *p2; + for( p2 = psz_parse; p2 < p; p2++ ) + { +#define I(i,a,b) ( (a) <= (i) && (i) <= (b) ) + if( !I(*p2, 'a', 'z' ) && !I(*p2, 'A', 'Z') && !I(*p2, '0', '9') && *p2 != '+' && *p2 != '-' && *p2 != '.' ) + { + p = NULL; + break; + } +#undef I + } + } + if( p != NULL ) { /* we have a protocol */ @@ -82,7 +105,8 @@ static inline void vlc_UrlParse( vlc_url_t *url, const char *psz_url, psz_parse = p; } p = strchr( psz_parse, '@' ); - if( p != NULL ) + p2 = strchr( psz_parse, '/' ); + if( p != NULL && ( p2 != NULL ? p < p2 : 1 ) ) { /* We have a login */ url->psz_username = psz_parse; @@ -94,8 +118,9 @@ static inline void vlc_UrlParse( vlc_url_t *url, const char *psz_url, /* We have a password */ *psz_parse++ = '\0'; url->psz_password = psz_parse; + decode_URI( url->psz_password ); } - + decode_URI( url->psz_username ); psz_parse = p; } @@ -153,8 +178,8 @@ static inline void vlc_UrlParse( vlc_url_t *url, const char *psz_url, *****************************************************************************/ static inline void vlc_UrlClean( vlc_url_t *url ) { - if( url->psz_buffer ) free( url->psz_buffer ); - if( url->psz_host ) free( url->psz_host ); + free( url->psz_buffer ); + free( url->psz_host ); url->psz_protocol = NULL; url->psz_username = NULL; @@ -167,11 +192,6 @@ static inline void vlc_UrlClean( vlc_url_t *url ) url->psz_buffer = NULL; } -VLC_EXPORT( char *, unescape_URI_duplicate, ( const char *psz ) ); -VLC_EXPORT( void, unescape_URI, ( char *psz ) ); -VLC_EXPORT( char *, decode_URI_duplicate, ( const char *psz ) ); -VLC_EXPORT( void, decode_URI, ( char *psz ) ); -VLC_EXPORT( char *, encode_URI_component, ( const char *psz ) ); static inline char *vlc_UrlEncode( const char *psz_url ) { @@ -207,51 +227,5 @@ static inline int vlc_UrlIsNotEncoded( const char *psz_url ) return 0; /* looks fine - but maybe it is not encoded */ } -/* Base64 encoding */ -static inline char *vlc_b64_encode( const char *src ) -{ - static const char b64[] = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; - size_t len = strlen( src ); - const uint8_t *in = (const uint8_t *)src; - - char *ret; - char *dst = (char *)malloc( ( len + 4 ) * 4 / 3 ); - if( dst == NULL ) - return NULL; - - ret = dst; - - while( len > 0 ) - { - /* pops (up to) 3 bytes of input, push 4 bytes */ - uint32_t v = *in++ << 24; // 1/3 - *dst++ = b64[v >> 26]; // 1/4 - v = v << 6; - - if( len >= 2 ) - v |= *in++ << 22; // 2/3 - *dst++ = b64[v >> 26]; // 2/4 - v = v << 6; - - if( len >= 3 ) - v |= *in++ << 20; // 3/3 - *dst++ = ( len >= 2 ) ? b64[v >> 26] : '='; // 3/4 - v = v << 6; - - *dst++ = ( len >= 3 ) ? b64[v >> 26] : '='; // 4/4 - len--; - if( len > 0 ) - { - len--; - if( len > 0 ) - len--; - } - } - - *dst = '\0'; - - return ret; -} #endif