]> git.sesse.net Git - vlc/blob - modules/control/http/util.c
497d5015e250121517cd092a2c552b7de8fa1440
[vlc] / modules / control / http / util.c
1 /*****************************************************************************
2  * util.c : Utility functions for HTTP interface
3  *****************************************************************************
4  * Copyright (C) 2001-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Christophe Massiot <massiot@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <vlc_common.h>
31 #include "http.h"
32 #include "vlc_strings.h"
33
34 /****************************************************************************
35  * File and directory functions
36  ****************************************************************************/
37
38 /* ToUrl: create a good name for an url from filename */
39 char *FileToUrl( char *name, bool *pb_index )
40 {
41     char *url, *p;
42
43     url = p = malloc( strlen( name ) + 1 );
44
45     *pb_index = false;
46     if( !url || !p )
47     {
48         return NULL;
49     }
50
51 #ifdef WIN32
52     while( *name == '\\' || *name == '/' )
53 #else
54     while( *name == '/' )
55 #endif
56     {
57         name++;
58     }
59
60     *p++ = '/';
61     strcpy( p, name );
62
63 #ifdef WIN32
64     /* convert '\\' into '/' */
65     name = p;
66     while( *name )
67     {
68         if( *name == '\\' )
69             *name = '/';
70         name++;
71     }
72 #endif
73
74     /* index.* -> / */
75     if( ( p = strrchr( url, '/' ) ) != NULL )
76     {
77         if( !strncmp( p, "/index.", 7 ) )
78         {
79             p[1] = '\0';
80             *pb_index = true;
81         }
82     }
83     return url;
84 }
85
86 /* Load a file */
87 int FileLoad( FILE *f, char **pp_data, int *pi_data )
88 {
89     int i_read;
90
91     /* just load the file */
92     *pi_data = 0;
93     *pp_data = malloc( 1025 );  /* +1 for \0 */
94     while( ( i_read = fread( &(*pp_data)[*pi_data], 1, 1024, f ) ) == 1024 )
95     {
96         *pi_data += 1024;
97         *pp_data = realloc( *pp_data, *pi_data  + 1025 );
98     }
99     if( i_read > 0 )
100     {
101         *pi_data += i_read;
102     }
103     (*pp_data)[*pi_data] = '\0';
104
105     return VLC_SUCCESS;
106 }
107
108 /* Parse a directory and recursively add files */
109 int ParseDirectory( intf_thread_t *p_intf, char *psz_root,
110                         char *psz_dir )
111 {
112     intf_sys_t     *p_sys = p_intf->p_sys;
113     char           dir[MAX_DIR_SIZE];
114     DIR           *p_dir;
115     vlc_acl_t     *p_acl;
116     FILE          *file;
117
118     char          *user = NULL;
119     char          *password = NULL;
120
121     int           i_dirlen;
122
123     if( ( p_dir = utf8_opendir( psz_dir ) ) == NULL )
124     {
125         if( errno != ENOENT && errno != ENOTDIR )
126             msg_Err( p_intf, "cannot open directory (%s)", psz_dir );
127         return VLC_EGENERIC;
128     }
129
130     i_dirlen = strlen( psz_dir );
131     if( i_dirlen + 10 > MAX_DIR_SIZE )
132     {
133         msg_Warn( p_intf, "skipping too deep directory (%s)", psz_dir );
134         closedir( p_dir );
135         return 0;
136     }
137
138     msg_Dbg( p_intf, "dir=%s", psz_dir );
139
140     snprintf( dir, sizeof( dir ), "%s"DIR_SEP".access", psz_dir );
141     if( ( file = utf8_fopen( dir, "r" ) ) != NULL )
142     {
143         char line[1024];
144         int  i_size;
145
146         msg_Dbg( p_intf, "find .access in dir=%s", psz_dir );
147
148         i_size = fread( line, 1, 1023, file );
149         if( i_size > 0 )
150         {
151             char *p;
152             while( i_size > 0 && ( line[i_size-1] == '\n' ||
153                    line[i_size-1] == '\r' ) )
154             {
155                 i_size--;
156             }
157
158             line[i_size] = '\0';
159
160             p = strchr( line, ':' );
161             if( p )
162             {
163                 *p++ = '\0';
164                 user = strdup( line );
165                 password = strdup( p );
166             }
167         }
168         msg_Dbg( p_intf, "using user=%s (read=%d)", user, i_size );
169
170         fclose( file );
171     }
172
173     snprintf( dir, sizeof( dir ), "%s"DIR_SEP".hosts", psz_dir );
174     p_acl = ACL_Create( p_intf, false );
175     if( ACL_LoadFile( p_acl, dir ) )
176     {
177         ACL_Destroy( p_acl );
178
179         struct stat st;
180         if( stat( dir, &st ) == 0 )
181         {
182             free( user );
183             free( password );
184             closedir( p_dir );
185             return VLC_EGENERIC;
186         }
187         p_acl = NULL;
188     }
189
190     for( ;; )
191     {
192         char *psz_filename;
193         /* parse psz_src dir */
194         if( ( psz_filename = utf8_readdir( p_dir ) ) == NULL )
195         {
196             break;
197         }
198
199         if( ( psz_filename[0] == '.' )
200          || ( i_dirlen + strlen( psz_filename ) > MAX_DIR_SIZE ) )
201         {
202             free( psz_filename );
203             continue;
204         }
205
206         snprintf( dir, sizeof( dir ), "%s"DIR_SEP"%s", psz_dir, psz_filename );
207         free( psz_filename );
208
209         if( ParseDirectory( p_intf, psz_root, dir ) )
210         {
211             httpd_file_sys_t *f = NULL;
212             httpd_handler_sys_t *h = NULL;
213             bool b_index;
214             char *psz_name, *psz_ext;
215
216             psz_name = FileToUrl( &dir[strlen( psz_root )], &b_index );
217             psz_ext = strrchr( dir, '.' );
218             if( psz_ext != NULL )
219             {
220                 int i;
221                 psz_ext++;
222                 for( i = 0; i < p_sys->i_handlers; i++ )
223                     if( !strcmp( p_sys->pp_handlers[i]->psz_ext, psz_ext ) )
224                         break;
225                 if( i < p_sys->i_handlers )
226                 {
227                     f = malloc( sizeof( httpd_handler_sys_t ) );
228                     h = (httpd_handler_sys_t *)f;
229                     f->b_handler = true;
230                     h->p_association = p_sys->pp_handlers[i];
231                 }
232             }
233             if( f == NULL )
234             {
235                 f = malloc( sizeof( httpd_file_sys_t ) );
236                 f->b_handler = false;
237             }
238
239             f->p_intf  = p_intf;
240             f->p_file = NULL;
241             f->p_redir = NULL;
242             f->p_redir2 = NULL;
243             f->file = strdup (dir);
244             f->name = psz_name;
245             f->b_html = strstr( &dir[strlen( psz_root )], ".htm" ) || strstr( &dir[strlen( psz_root )], ".xml" ) ? true : false;
246
247             if( !f->name )
248             {
249                 msg_Err( p_intf , "unable to parse directory" );
250                 closedir( p_dir );
251                 free( f );
252                 return( VLC_ENOMEM );
253             }
254             msg_Dbg( p_intf, "file=%s (url=%s)",
255                      f->file, f->name );
256
257             if( !f->b_handler )
258             {
259                 char *psz_type = strdup( "text/html; charset=UTF-8" );
260                 if( strstr( &dir[strlen( psz_root )], ".xml" ) )
261                 {
262                     char *psz = strstr( psz_type, "html;" );
263                     if( psz )
264                     {
265                         psz[0] = 'x';
266                         psz[1] = 'm';
267                         psz[2] = 'l';
268                         psz[3] = ';';
269                         psz[4] = ' ';
270                     }
271                 }
272                 f->p_file = httpd_FileNew( p_sys->p_httpd_host,
273                                            f->name,
274                                            f->b_html ? psz_type : NULL,
275                                            user, password, p_acl,
276                                            HttpCallback, f );
277                 free( psz_type );
278                 if( f->p_file != NULL )
279                 {
280                     TAB_APPEND( p_sys->i_files, p_sys->pp_files, f );
281                 }
282             }
283             else
284             {
285                 h->p_handler = httpd_HandlerNew( p_sys->p_httpd_host,
286                                                  f->name,
287                                                  user, password, p_acl,
288                                                  HandlerCallback, h );
289                 if( h->p_handler != NULL )
290                 {
291                     TAB_APPEND( p_sys->i_files, p_sys->pp_files,
292                                 (httpd_file_sys_t *)h );
293                 }
294             }
295
296             /* for url that ends by / add
297              *  - a redirect from rep to rep/
298              *  - in case of index.* rep/index.html to rep/ */
299             if( f && f->name[strlen(f->name) - 1] == '/' )
300             {
301                 char *psz_redir = strdup( f->name );
302                 char *p;
303                 psz_redir[strlen( psz_redir ) - 1] = '\0';
304
305                 msg_Dbg( p_intf, "redir=%s -> %s", psz_redir, f->name );
306                 f->p_redir = httpd_RedirectNew( p_sys->p_httpd_host, f->name, psz_redir );
307                 free( psz_redir );
308
309                 if( b_index && ( p = strstr( f->file, "index." ) ) )
310                 {
311                     if( asprintf( &psz_redir, "%s%s", f->name, p ) != -1 )
312                     {
313                         msg_Dbg( p_intf, "redir=%s -> %s", psz_redir, f->name );
314                         f->p_redir2 = httpd_RedirectNew( p_sys->p_httpd_host,
315                                                          f->name, psz_redir );
316
317                         free( psz_redir );
318                     }
319                 }
320             }
321         }
322     }
323
324     free( user );
325     free( password );
326
327     ACL_Destroy( p_acl );
328     closedir( p_dir );
329
330     return VLC_SUCCESS;
331 }
332
333
334 /*************************************************************************
335  * Playlist stuff
336  *************************************************************************/
337 void PlaylistListNode( intf_thread_t *p_intf, playlist_t *p_pl,
338                            playlist_item_t *p_node, char *name, mvar_t *s,
339                            int i_depth )
340 {
341     if( !p_node || !p_node->p_input )
342         return;
343
344     if( p_node->i_children == -1 )
345     {
346         char value[512];
347         char *psz;
348         playlist_item_t * p_item = playlist_CurrentPlayingItem( p_pl );
349         if( !p_item || !p_item->p_input )
350             return;
351
352         mvar_t *itm = mvar_New( name, "set" );
353         if( p_item->p_input == p_node->p_input )
354             mvar_AppendNewVar( itm, "current", "1" );
355         else
356             mvar_AppendNewVar( itm, "current", "0" );
357
358         sprintf( value, "%d", p_node->i_id );
359         mvar_AppendNewVar( itm, "index", value );
360
361         psz = input_item_GetName( p_node->p_input );
362         mvar_AppendNewVar( itm, "name", psz );
363         free( psz );
364
365         psz = input_item_GetURI( p_node->p_input );
366         mvar_AppendNewVar( itm, "uri", psz );
367         free( psz );
368
369         sprintf( value, "Item");
370         mvar_AppendNewVar( itm, "type", value );
371
372         sprintf( value, "%d", i_depth );
373         mvar_AppendNewVar( itm, "depth", value );
374
375         if( p_node->i_flags & PLAYLIST_RO_FLAG )
376             mvar_AppendNewVar( itm, "ro", "ro" );
377         else
378             mvar_AppendNewVar( itm, "ro", "rw" );
379
380         sprintf( value, "%"PRId64, input_item_GetDuration( p_node->p_input ) );
381         mvar_AppendNewVar( itm, "duration", value );
382
383         //Adding extra meta-information to each playlist item
384
385         psz = input_item_GetTitle( p_node->p_input );
386         mvar_AppendNewVar( itm, "title", psz );
387
388         psz = input_item_GetArtist( p_node->p_input );
389         mvar_AppendNewVar( itm, "artist", psz );
390
391         psz = input_item_GetGenre( p_node->p_input );
392         mvar_AppendNewVar( itm, "genre", psz );
393
394         psz = input_item_GetCopyright( p_node->p_input );
395         mvar_AppendNewVar( itm, "copyright", psz );
396
397         psz = input_item_GetAlbum( p_node->p_input );
398         mvar_AppendNewVar( itm, "album", psz );
399
400         psz = input_item_GetTrackNum( p_node->p_input );
401         mvar_AppendNewVar( itm, "track", psz );
402
403         psz = input_item_GetDescription( p_node->p_input );
404         mvar_AppendNewVar( itm, "description", psz );
405
406         psz = input_item_GetRating( p_node->p_input );
407         mvar_AppendNewVar( itm, "rating", psz );
408
409         psz = input_item_GetDate( p_node->p_input );
410         mvar_AppendNewVar( itm, "date", psz );
411
412         psz = input_item_GetURL( p_node->p_input );
413         mvar_AppendNewVar( itm, "url", psz );
414
415         psz = input_item_GetLanguage( p_node->p_input );
416         mvar_AppendNewVar( itm, "language", psz );
417
418         psz = input_item_GetNowPlaying( p_node->p_input );
419         mvar_AppendNewVar( itm, "now_playing", psz );
420
421         psz = input_item_GetPublisher( p_node->p_input );
422         mvar_AppendNewVar( itm, "publisher", psz );
423
424         psz = input_item_GetEncodedBy( p_node->p_input );
425         mvar_AppendNewVar( itm, "encoded_by", psz );
426
427         psz = input_item_GetArtURL( p_node->p_input );
428         mvar_AppendNewVar( itm, "art_url", psz );
429
430         psz = input_item_GetTrackID( p_node->p_input );
431         mvar_AppendNewVar( itm, "track_id", psz );
432
433         mvar_AppendVar( s, itm );
434     }
435     else
436     {
437         char value[512];
438         int i_child;
439         mvar_t *itm = mvar_New( name, "set" );
440
441         mvar_AppendNewVar( itm, "name", p_node->p_input->psz_name );
442         mvar_AppendNewVar( itm, "uri", p_node->p_input->psz_name );
443
444         sprintf( value, "Node" );
445         mvar_AppendNewVar( itm, "type", value );
446
447         sprintf( value, "%d", p_node->i_id );
448         mvar_AppendNewVar( itm, "index", value );
449
450         sprintf( value, "%d", p_node->i_children);
451         mvar_AppendNewVar( itm, "i_children", value );
452
453         sprintf( value, "%d", i_depth );
454         mvar_AppendNewVar( itm, "depth", value );
455
456         if( p_node->i_flags & PLAYLIST_RO_FLAG )
457             mvar_AppendNewVar( itm, "ro", "ro" );
458         else
459             mvar_AppendNewVar( itm, "ro", "rw" );
460
461         mvar_AppendVar( s, itm );
462
463         for( i_child = 0 ; i_child < p_node->i_children ; i_child++ )
464              PlaylistListNode( p_intf, p_pl, p_node->pp_children[i_child],
465                                name, s, i_depth + 1);
466     }
467 }
468
469 /****************************************************************************
470  * Seek command parsing handling
471  ****************************************************************************/
472 void HandleSeek( intf_thread_t *p_intf, char *p_value )
473 {
474     intf_sys_t     *p_sys = p_intf->p_sys;
475     vlc_value_t val;
476     int i_stock = 0;
477     uint64_t i_length;
478     int i_value = 0;
479     int i_relative = 0;
480 #define POSITION_ABSOLUTE 12
481 #define POSITION_REL_FOR 13
482 #define POSITION_REL_BACK 11
483 #define VL_TIME_ABSOLUTE 0
484 #define VL_TIME_REL_FOR 1
485 #define VL_TIME_REL_BACK -1
486     if( p_sys->p_input )
487     {
488         var_Get( p_sys->p_input, "length", &val );
489         i_length = val.i_time;
490
491         while( p_value[0] != '\0' )
492         {
493             switch(p_value[0])
494             {
495                 case '+':
496                 {
497                     i_relative = VL_TIME_REL_FOR;
498                     p_value++;
499                     break;
500                 }
501                 case '-':
502                 {
503                     i_relative = VL_TIME_REL_BACK;
504                     p_value++;
505                     break;
506                 }
507                 case '0': case '1': case '2': case '3': case '4':
508                 case '5': case '6': case '7': case '8': case '9':
509                 {
510                     i_stock = strtol( p_value , &p_value , 10 );
511                     break;
512                 }
513                 case '%': /* for percentage ie position */
514                 {
515                     i_relative += POSITION_ABSOLUTE;
516                     i_value = i_stock;
517                     i_stock = 0;
518                     p_value[0] = '\0';
519                     break;
520                 }
521                 case ':':
522                 {
523                     i_value = 60 * (i_value + i_stock) ;
524                     i_stock = 0;
525                     p_value++;
526                     break;
527                 }
528                 case 'h': case 'H': /* hours */
529                 {
530                     i_value += 3600 * i_stock;
531                     i_stock = 0;
532                     /* other characters which are not numbers are not
533                      * important */
534                     while( ((p_value[0] < '0') || (p_value[0] > '9'))
535                            && (p_value[0] != '\0') )
536                     {
537                         p_value++;
538                     }
539                     break;
540                 }
541                 case 'm': case 'M': case '\'': /* minutes */
542                 {
543                     i_value += 60 * i_stock;
544                     i_stock = 0;
545                     p_value++;
546                     while( ((p_value[0] < '0') || (p_value[0] > '9'))
547                            && (p_value[0] != '\0') )
548                     {
549                         p_value++;
550                     }
551                     break;
552                 }
553                 case 's': case 'S': case '"':  /* seconds */
554                 {
555                     i_value += i_stock;
556                     i_stock = 0;
557                     while( ((p_value[0] < '0') || (p_value[0] > '9'))
558                            && (p_value[0] != '\0') )
559                     {
560                         p_value++;
561                     }
562                     break;
563                 }
564                 default:
565                 {
566                     p_value++;
567                     break;
568                 }
569             }
570         }
571
572         /* if there is no known symbol, I consider it as seconds.
573          * Otherwise, i_stock = 0 */
574         i_value += i_stock;
575
576         switch(i_relative)
577         {
578             case VL_TIME_ABSOLUTE:
579             {
580                 if( (uint64_t)( i_value ) * 1000000 <= i_length )
581                     val.i_time = (uint64_t)( i_value ) * 1000000;
582                 else
583                     val.i_time = i_length;
584
585                 var_Set( p_sys->p_input, "time", val );
586                 msg_Dbg( p_intf, "requested seek position: %dsec", i_value );
587                 break;
588             }
589             case VL_TIME_REL_FOR:
590             {
591                 var_Get( p_sys->p_input, "time", &val );
592                 if( (uint64_t)( i_value ) * 1000000 + val.i_time <= i_length )
593                 {
594                     val.i_time = ((uint64_t)( i_value ) * 1000000) + val.i_time;
595                 } else
596                 {
597                     val.i_time = i_length;
598                 }
599                 var_Set( p_sys->p_input, "time", val );
600                 msg_Dbg( p_intf, "requested seek position forward: %dsec", i_value );
601                 break;
602             }
603             case VL_TIME_REL_BACK:
604             {
605                 var_Get( p_sys->p_input, "time", &val );
606                 if( (int64_t)( i_value ) * 1000000 > val.i_time )
607                 {
608                     val.i_time = 0;
609                 } else
610                 {
611                     val.i_time = val.i_time - ((uint64_t)( i_value ) * 1000000);
612                 }
613                 var_Set( p_sys->p_input, "time", val );
614                 msg_Dbg( p_intf, "requested seek position backward: %dsec", i_value );
615                 break;
616             }
617             case POSITION_ABSOLUTE:
618             {
619                 val.f_float = __MIN( __MAX( ((float) i_value ) / 100.0 ,
620                                             0.0 ), 100.0 );
621                 var_Set( p_sys->p_input, "position", val );
622                 msg_Dbg( p_intf, "requested seek percent: %d%%", i_value );
623                 break;
624             }
625             case POSITION_REL_FOR:
626             {
627                 var_Get( p_sys->p_input, "position", &val );
628                 val.f_float += __MIN( __MAX( ((float) i_value ) / 100.0,
629                                              0.0 ) , 100.0 );
630                 var_Set( p_sys->p_input, "position", val );
631                 msg_Dbg( p_intf, "requested seek percent forward: %d%%",
632                          i_value );
633                 break;
634             }
635             case POSITION_REL_BACK:
636             {
637                 var_Get( p_sys->p_input, "position", &val );
638                 val.f_float -= __MIN( __MAX( ((float) i_value ) / 100.0,
639                                              0.0 ) , 100.0 );
640                 var_Set( p_sys->p_input, "position", val );
641                 msg_Dbg( p_intf, "requested seek percent backward: %d%%",
642                          i_value );
643                 break;
644             }
645             default:
646             {
647                 msg_Dbg( p_intf, "invalid seek request" );
648                 break;
649             }
650         }
651     }
652 #undef POSITION_ABSOLUTE
653 #undef POSITION_REL_FOR
654 #undef POSITION_REL_BACK
655 #undef VL_TIME_ABSOLUTE
656 #undef VL_TIME_REL_FOR
657 #undef VL_TIME_REL_BACK
658 }
659
660
661 /****************************************************************************
662  * URI Parsing functions
663  ****************************************************************************/
664 int TestURIParam( char *psz_uri, const char *psz_name )
665 {
666     char *p = psz_uri;
667
668     while( (p = strstr( p, psz_name )) )
669     {
670         /* Verify that we are dealing with a post/get argument */
671         if( (p == psz_uri || *(p - 1) == '&' || *(p - 1) == '\n')
672               && p[strlen(psz_name)] == '=' )
673         {
674             return true;
675         }
676         p++;
677     }
678
679     return false;
680 }
681
682 static const char *FindURIValue( const char *psz_uri, const char *restrict psz_name,
683                            size_t *restrict p_len )
684 {
685     const char *p = psz_uri, *end;
686     size_t len;
687
688     while( (p = strstr( p, psz_name )) )
689     {
690         /* Verify that we are dealing with a post/get argument */
691         if( (p == psz_uri || *(p - 1) == '&' || *(p - 1) == '\n')
692               && p[strlen(psz_name)] == '=' )
693             break;
694         p++;
695     }
696
697     if( p == NULL )
698     {
699         *p_len = 0;
700         return NULL;
701     }
702
703     p += strlen( psz_name );
704     if( *p == '=' ) p++;
705
706     if( ( end = strchr( p, '\n' ) ) != NULL )
707     {
708         /* POST method */
709         if( ( end > p ) && ( end[-1] == '\r' ) )
710             end--;
711
712         len = end - p;
713     }
714     else
715     {
716         /* GET method */
717         if( ( end = strchr( p, '&' ) ) != NULL )
718             len = end - p;
719         else
720             len = strlen( p );
721     }
722
723     *p_len = len;
724     return p;
725 }
726
727 const char *ExtractURIValue( const char *restrict psz_uri,
728                            const char *restrict psz_name,
729                            char *restrict psz_buf, size_t bufsize )
730 {
731     size_t len;
732     const char *psz_value = FindURIValue( psz_uri, psz_name, &len );
733     const char *psz_next;
734
735     if( psz_value == NULL )
736     {
737         if( bufsize > 0 )
738             *psz_buf = '\0';
739         return NULL;
740     }
741
742     psz_next = psz_value + len;
743
744     if( len >= bufsize )
745         len = bufsize - 1;
746
747     if( len > 0 )
748         strncpy( psz_buf, psz_value, len );
749     if( bufsize > 0 )
750         psz_buf[len] = '\0';
751
752     return psz_next;
753 }
754
755 char *ExtractURIString( const char *restrict psz_uri,
756                             const char *restrict psz_name )
757 {
758     size_t len;
759     const char *psz_value = FindURIValue( psz_uri, psz_name, &len );
760
761     if( psz_value == NULL )
762         return NULL;
763
764     char *res = malloc( len + 1 );
765     if( res == NULL )
766         return NULL;
767
768     memcpy( res, psz_value, len );
769     res[len] = '\0';
770
771     return res;
772 }
773
774 /* Since the resulting string is smaller we can work in place, so it is
775  * permitted to have psz == new. new points to the first word of the
776  * string, the function returns the remaining string. */
777 char *FirstWord( char *psz, char *new )
778 {
779     bool b_end;
780
781     while( *psz == ' ' )
782         psz++;
783
784     while( *psz != '\0' && *psz != ' ' )
785     {
786         if( *psz == '\'' )
787         {
788             char c = *psz++;
789             while( *psz != '\0' && *psz != c )
790             {
791                 if( *psz == '\\' && psz[1] != '\0' )
792                     psz++;
793                 *new++ = *psz++;
794             }
795             if( *psz == c )
796                 psz++;
797         }
798         else
799         {
800             if( *psz == '\\' && psz[1] != '\0' )
801                 psz++;
802             *new++ = *psz++;
803         }
804     }
805     b_end = !*psz;
806
807     *new++ = '\0';
808     if( !b_end )
809         return psz + 1;
810     else
811         return NULL;
812 }
813
814 /**********************************************************************
815  * MRLParse: parse the MRL, find the MRL string and the options,
816  * create an item with all information in it, and return the item.
817  * return NULL if there is an error.
818  **********************************************************************/
819
820 /* Function analog to FirstWord except that it relies on colon instead
821  * of space to delimit option boundaries. */
822 static char *FirstOption( char *psz, char *new )
823 {
824     bool b_end, b_start = true;
825
826     while( *psz == ' ' )
827         psz++;
828
829     while( *psz != '\0' && (*psz != ' ' || psz[1] != ':') )
830     {
831         if( *psz == '\'' )
832         {
833             char c = *psz++;
834             while( *psz != '\0' && *psz != c )
835             {
836                 if( *psz == '\\' && psz[1] != '\0' )
837                     psz++;
838                 *new++ = *psz++;
839                 b_start = false;
840             }
841             if( *psz == c )
842                 psz++;
843         }
844         else
845         {
846             if( *psz == '\\' && psz[1] != '\0' )
847                 psz++;
848             *new++ = *psz++;
849             b_start = false;
850         }
851     }
852     b_end = !*psz;
853
854     if ( !b_start )
855         while (new[-1] == ' ')
856             new--;
857
858     *new++ = '\0';
859     if( !b_end )
860         return psz + 1;
861     else
862         return NULL;
863 }
864
865 input_item_t *MRLParse( intf_thread_t *p_intf, const char *mrl,
866                                    char *psz_name )
867 {
868     char *psz = strdup( mrl ), *s_mrl = psz, *s_temp;
869     if( psz == NULL )
870         return NULL;
871     /* extract the mrl */
872     s_temp = FirstOption( s_mrl, s_mrl );
873     if( s_temp == NULL )
874     {
875         s_temp = s_mrl + strlen( s_mrl );
876     }
877
878     input_item_t *p_input = input_item_New( p_intf, s_mrl, psz_name );
879     if( p_input == NULL )
880         return NULL;
881     s_mrl = s_temp;
882
883     /* now we can take care of the options */
884     while ( *s_mrl != '\0' )
885     {
886         s_temp = FirstOption( s_mrl, s_mrl );
887         if( s_mrl == '\0' )
888             break;
889         if( s_temp == NULL )
890         {
891             s_temp = s_mrl + strlen( s_mrl );
892         }
893         input_item_AddOption( p_input, s_mrl, VLC_INPUT_OPTION_TRUSTED );
894         s_mrl = s_temp;
895     }
896
897     return p_input;
898 }
899
900 /**********************************************************************
901  * RealPath: parse ../, ~ and path stuff
902  **********************************************************************/
903 char *RealPath( const char *psz_src )
904 {
905     char *psz_dir;
906     char *p;
907     int i_len = strlen(psz_src);
908
909     psz_dir = malloc( i_len + 2 );
910     strcpy( psz_dir, psz_src );
911
912     /* Add a trailing sep to ease the .. step */
913     psz_dir[i_len] = DIR_SEP_CHAR;
914     psz_dir[i_len + 1] = '\0';
915
916 #if (DIR_SEP_CHAR != '/')
917     /* Convert all / to native separator */
918     p = psz_dir;
919     while( (p = strchr( p, '/' )) != NULL )
920     {
921         *p = DIR_SEP_CHAR;
922     }
923 #endif
924
925     /* FIXME: this could be O(N) rather than O(N²)... */
926     /* Remove multiple separators and /./ */
927     p = psz_dir;
928     while( (p = strchr( p, DIR_SEP_CHAR )) != NULL )
929     {
930         if( p[1] == DIR_SEP_CHAR )
931             memmove( &p[1], &p[2], strlen(&p[2]) + 1 );
932         else if( p[1] == '.' && p[2] == DIR_SEP_CHAR )
933             memmove( &p[1], &p[3], strlen(&p[3]) + 1 );
934         else
935             p++;
936     }
937
938     if( psz_dir[0] == '~' )
939     {
940         char *dir;
941         asprintf( &dir, "%s%s", config_GetHomeDir(), psz_dir + 1 );
942         free( psz_dir );
943         psz_dir = dir;
944     }
945
946     if( strlen(psz_dir) > 2 )
947     {
948         /* Fix all .. dir */
949         p = psz_dir + 3;
950         while( (p = strchr( p, DIR_SEP_CHAR )) != NULL )
951         {
952             if( p[-1] == '.' && p[-2] == '.' && p[-3] == DIR_SEP_CHAR )
953             {
954                 char *q;
955                 p[-3] = '\0';
956                 if( (q = strrchr( psz_dir, DIR_SEP_CHAR )) != NULL )
957                 {
958                     memmove( q + 1, p + 1, strlen(p + 1) + 1 );
959                     p = q + 1;
960                 }
961                 else
962                 {
963                     memmove( psz_dir, p, strlen(p) + 1 );
964                     p = psz_dir + 3;
965                 }
966             }
967             else
968                 p++;
969         }
970     }
971
972     /* Remove trailing sep if there are at least 2 sep in the string
973      * (handles the C:\ stuff) */
974     p = strrchr( psz_dir, DIR_SEP_CHAR );
975     if( p != NULL && p[1] == '\0' && p != strchr( psz_dir, DIR_SEP_CHAR ) )
976         *p = '\0';
977
978     return psz_dir;
979 }