]> git.sesse.net Git - vlc/blob - modules/demux/playlist/xspf.c
demux_xspf: fix double free (introduced by myself).
[vlc] / modules / demux / playlist / xspf.c
1 /*******************************************************************************
2  * xspf.c : XSPF playlist import functions
3  *******************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Daniel Stränger <vlc at schmaller dot de>
8  *          Yoann Peronneau <yoann@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  ******************************************************************************/
24 /**
25  * \file modules/demux/playlist/xspf.c
26  * \brief XSPF playlist import functions
27  */
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_demux.h>
35
36 #include <vlc_xml.h>
37 #include <vlc_strings.h>
38 #include <vlc_url.h>
39 #include "xspf.h"
40 #include "playlist.h"
41
42 struct demux_sys_t
43 {
44     input_item_t **pp_tracklist;
45     int i_tracklist_entries;
46     int i_track_id;
47     char * psz_base;
48 };
49
50 static int Control( demux_t *, int, va_list );
51 static int Demux( demux_t * );
52
53 /**
54  * \brief XSPF submodule initialization function
55  */
56 int Import_xspf( vlc_object_t *p_this )
57 {
58     DEMUX_BY_EXTENSION_OR_FORCED_MSG( ".xspf", "xspf-open",
59                                       "using XSPF playlist reader" );
60     return VLC_SUCCESS;
61 }
62
63 void Close_xspf( vlc_object_t *p_this )
64 {
65     demux_t *p_demux = (demux_t *)p_this;
66     int i;
67     for(i = 0; i < p_demux->p_sys->i_tracklist_entries; i++)
68     {
69         if(p_demux->p_sys->pp_tracklist[i])
70             vlc_gc_decref( p_demux->p_sys->pp_tracklist[i] );
71     }
72     free( p_demux->p_sys->pp_tracklist );
73     free( p_demux->p_sys->psz_base );
74     free( p_demux->p_sys );
75 }
76
77 /**
78  * \brief demuxer function for XSPF parsing
79  */
80 int Demux( demux_t *p_demux )
81 {
82     int i_ret = 1;
83     xml_t *p_xml = NULL;
84     xml_reader_t *p_xml_reader = NULL;
85     char *psz_name = NULL;
86     INIT_PLAYLIST_STUFF;
87     p_demux->p_sys->pp_tracklist = NULL;
88     p_demux->p_sys->i_tracklist_entries = 0;
89     p_demux->p_sys->i_track_id = -1;
90     p_demux->p_sys->psz_base = NULL;
91
92     /* create new xml parser from stream */
93     p_xml = xml_Create( p_demux );
94     if( !p_xml )
95         i_ret = -1;
96     else
97     {
98         p_xml_reader = xml_ReaderCreate( p_xml, p_demux->s );
99         if( !p_xml_reader )
100             i_ret = -1;
101     }
102
103     /* locating the root node */
104     if( i_ret == 1 )
105     {
106         do
107         {
108             if( xml_ReaderRead( p_xml_reader ) != 1 )
109             {
110                 msg_Err( p_demux, "can't read xml stream" );
111                 i_ret = -1;
112             }
113         } while( i_ret == VLC_SUCCESS &&
114                  xml_ReaderNodeType( p_xml_reader ) != XML_READER_STARTELEM );
115     }
116     /* checking root node name */
117     if( i_ret == 1 )
118     {
119         psz_name = xml_ReaderName( p_xml_reader );
120         if( !psz_name || strcmp( psz_name, "playlist" ) )
121         {
122             msg_Err( p_demux, "invalid root node name: %s", psz_name );
123             i_ret = -1;
124         }
125         FREE_NAME();
126     }
127
128     if( i_ret == 1 )
129         i_ret = parse_playlist_node( p_demux, p_current_input,
130                                      p_xml_reader, "playlist" ) ? 0 : -1;
131
132     int i;
133     for( i = 0 ; i < p_demux->p_sys->i_tracklist_entries ; i++ )
134     {
135         input_item_t *p_new_input = p_demux->p_sys->pp_tracklist[i];
136         if( p_new_input )
137         {
138             input_item_AddSubItem( p_current_input, p_new_input );
139         }
140     }
141
142     HANDLE_PLAY_AND_RELEASE;
143     if( p_xml_reader )
144         xml_ReaderDelete( p_xml, p_xml_reader );
145     if( p_xml )
146         xml_Delete( p_xml );
147     return i_ret; /* Needed for correct operation of go back */
148 }
149
150 /** \brief dummy function for demux callback interface */
151 static int Control( demux_t *p_demux, int i_query, va_list args )
152 {
153     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
154     return VLC_EGENERIC;
155 }
156
157 /**
158  * \brief parse the root node of a XSPF playlist
159  * \param p_demux demuxer instance
160  * \param p_input_item current input item
161  * \param p_xml_reader xml reader instance
162  * \param psz_element name of element to parse
163  */
164 static bool parse_playlist_node COMPLEX_INTERFACE
165 {
166     char *psz_name = NULL;
167     char *psz_value = NULL;
168     bool b_version_found = false;
169     int i_node;
170     xml_elem_hnd_t *p_handler = NULL;
171
172     xml_elem_hnd_t pl_elements[] =
173         { {"title",        SIMPLE_CONTENT,  {.smpl = set_item_info} },
174           {"creator",      SIMPLE_CONTENT,  {.smpl = set_item_info} },
175           {"annotation",   SIMPLE_CONTENT,  {.smpl = set_item_info} },
176           {"info",         SIMPLE_CONTENT,  {NULL} },
177           {"location",     SIMPLE_CONTENT,  {NULL} },
178           {"identifier",   SIMPLE_CONTENT,  {NULL} },
179           {"image",        SIMPLE_CONTENT,  {.smpl = set_item_info} },
180           {"date",         SIMPLE_CONTENT,  {NULL} },
181           {"license",      SIMPLE_CONTENT,  {NULL} },
182           {"attribution",  COMPLEX_CONTENT, {.cmplx = skip_element} },
183           {"link",         SIMPLE_CONTENT,  {NULL} },
184           {"meta",         SIMPLE_CONTENT,  {NULL} },
185           {"extension",    COMPLEX_CONTENT, {.cmplx = parse_extension_node} },
186           {"trackList",    COMPLEX_CONTENT, {.cmplx = parse_tracklist_node} },
187           {NULL,           UNKNOWN_CONTENT, {NULL} }
188         };
189
190     /* read all playlist attributes */
191     while( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
192     {
193         psz_name = xml_ReaderName( p_xml_reader );
194         psz_value = xml_ReaderValue( p_xml_reader );
195         if( !psz_name || !psz_value )
196         {
197             msg_Err( p_demux, "invalid xml stream @ <playlist>" );
198             FREE_ATT();
199             return false;
200         }
201         /* attribute: version */
202         if( !strcmp( psz_name, "version" ) )
203         {
204             b_version_found = true;
205             if( strcmp( psz_value, "0" ) && strcmp( psz_value, "1" ) )
206                 msg_Warn( p_demux, "unsupported XSPF version" );
207         }
208         /* attribute: xmlns */
209         else if( !strcmp( psz_name, "xmlns" ) || !strcmp( psz_name, "xmlns:vlc" ) )
210             ;
211         else if( !strcmp( psz_name, "xml:base" ) )
212         {
213             p_demux->p_sys->psz_base = strdup( psz_value );
214         }
215         /* unknown attribute */
216         else
217             msg_Warn( p_demux, "invalid <playlist> attribute:\"%s\"", psz_name);
218
219         FREE_ATT();
220     }
221     /* attribute version is mandatory !!! */
222     if( !b_version_found )
223         msg_Warn( p_demux, "<playlist> requires \"version\" attribute" );
224
225     /* parse the child elements - we only take care of <trackList> */
226     while( xml_ReaderRead( p_xml_reader ) == 1 )
227     {
228         i_node = xml_ReaderNodeType( p_xml_reader );
229         switch( i_node )
230         {
231             case XML_READER_NONE:
232                 break;
233             case XML_READER_STARTELEM:
234                 /*  element start tag  */
235                 psz_name = xml_ReaderName( p_xml_reader );
236                 if( !psz_name || !*psz_name )
237                 {
238                     msg_Err( p_demux, "invalid xml stream" );
239                     FREE_ATT();
240                     return false;
241                 }
242                 /* choose handler */
243                 for( p_handler = pl_elements;
244                      p_handler->name && strcmp( psz_name, p_handler->name );
245                      p_handler++ );
246                 if( !p_handler->name )
247                 {
248                     msg_Err( p_demux, "unexpected element <%s>", psz_name );
249                     FREE_ATT();
250                     return false;
251                 }
252                 FREE_NAME();
253                 /* complex content is parsed in a separate function */
254                 if( p_handler->type == COMPLEX_CONTENT )
255                 {
256                     if( p_handler->pf_handler.cmplx( p_demux,
257                                                      p_input_item,
258                                                      p_xml_reader,
259                                                      p_handler->name ) )
260                     {
261                         p_handler = NULL;
262                         FREE_ATT();
263                     }
264                     else
265                     {
266                         FREE_ATT();
267                         return false;
268                     }
269                 }
270                 break;
271
272             case XML_READER_TEXT:
273                 /* simple element content */
274                 FREE_ATT();
275                 psz_value = xml_ReaderValue( p_xml_reader );
276                 if( !psz_value )
277                 {
278                     msg_Err( p_demux, "invalid xml stream" );
279                     FREE_ATT();
280                     return false;
281                 }
282                 break;
283
284             case XML_READER_ENDELEM:
285                 /* element end tag */
286                 psz_name = xml_ReaderName( p_xml_reader );
287                 if( !psz_name )
288                 {
289                     msg_Err( p_demux, "invalid xml stream" );
290                     FREE_ATT();
291                     return false;
292                 }
293                 /* leave if the current parent node <playlist> is terminated */
294                 if( !strcmp( psz_name, psz_element ) )
295                 {
296                     FREE_ATT();
297                     return true;
298                 }
299                 /* there MUST have been a start tag for that element name */
300                 if( !p_handler || !p_handler->name
301                     || strcmp( p_handler->name, psz_name ))
302                 {
303                     msg_Err( p_demux, "there's no open element left for <%s>",
304                              psz_name );
305                     FREE_ATT();
306                     return false;
307                 }
308
309                 if( p_handler->pf_handler.smpl )
310                 {
311                     p_handler->pf_handler.smpl( p_input_item, p_handler->name,
312                                                 psz_value );
313                 }
314                 FREE_ATT();
315                 p_handler = NULL;
316                 break;
317
318             default:
319                 /* unknown/unexpected xml node */
320                 msg_Err( p_demux, "unexpected xml node %i", i_node );
321                 FREE_ATT();
322                 return false;
323         }
324         FREE_NAME();
325     }
326     return false;
327 }
328
329 /**
330  * \brief parses the tracklist node which only may contain <track>s
331  */
332 static bool parse_tracklist_node COMPLEX_INTERFACE
333 {
334     VLC_UNUSED(psz_element);
335     char *psz_name = NULL;
336     int i_node;
337     int i_ntracks = 0;
338
339     /* now parse the <track>s */
340     while( xml_ReaderRead( p_xml_reader ) == 1 )
341     {
342         i_node = xml_ReaderNodeType( p_xml_reader );
343         if( i_node == XML_READER_STARTELEM )
344         {
345             psz_name = xml_ReaderName( p_xml_reader );
346             if( !psz_name )
347             {
348                 msg_Err( p_demux, "unexpected end of xml data" );
349                 FREE_NAME();
350                 return false;
351             }
352             if( strcmp( psz_name, "track") )
353             {
354                 msg_Err( p_demux, "unexpected child of <trackList>: <%s>",
355                          psz_name );
356                 FREE_NAME();
357                 return false;
358             }
359             FREE_NAME();
360
361             /* parse the track data in a separate function */
362             if( parse_track_node( p_demux, p_input_item,
363                                    p_xml_reader,"track" ) == true )
364                 i_ntracks++;
365         }
366         else if( i_node == XML_READER_ENDELEM )
367             break;
368     }
369
370     /* the <trackList> has to be terminated */
371     if( xml_ReaderNodeType( p_xml_reader ) != XML_READER_ENDELEM )
372     {
373         msg_Err( p_demux, "there's a missing </trackList>" );
374         FREE_NAME();
375         return false;
376     }
377     psz_name = xml_ReaderName( p_xml_reader );
378     if( !psz_name || strcmp( psz_name, "trackList" ) )
379     {
380         msg_Err( p_demux, "expected: </trackList>, found: </%s>", psz_name );
381         FREE_NAME();
382         return false;
383     }
384     FREE_NAME();
385
386     msg_Dbg( p_demux, "parsed %i tracks successfully", i_ntracks );
387
388     return true;
389 }
390
391 /**
392  * \brief parse one track element
393  * \param COMPLEX_INTERFACE
394  */
395 static bool parse_track_node COMPLEX_INTERFACE
396 {
397     int i_node;
398     char *psz_name = NULL;
399     char *psz_value = NULL;
400     xml_elem_hnd_t *p_handler = NULL;
401
402     xml_elem_hnd_t track_elements[] =
403         { {"location",     SIMPLE_CONTENT,  {NULL} },
404           {"identifier",   SIMPLE_CONTENT,  {NULL} },
405           {"title",        SIMPLE_CONTENT,  {.smpl = set_item_info} },
406           {"creator",      SIMPLE_CONTENT,  {.smpl = set_item_info} },
407           {"annotation",   SIMPLE_CONTENT,  {.smpl = set_item_info} },
408           {"info",         SIMPLE_CONTENT,  {NULL} },
409           {"image",        SIMPLE_CONTENT,  {.smpl = set_item_info} },
410           {"album",        SIMPLE_CONTENT,  {.smpl = set_item_info} },
411           {"trackNum",     SIMPLE_CONTENT,  {.smpl = set_item_info} },
412           {"duration",     SIMPLE_CONTENT,  {.smpl = set_item_info} },
413           {"link",         SIMPLE_CONTENT,  {NULL} },
414           {"meta",         SIMPLE_CONTENT,  {NULL} },
415           {"extension",    COMPLEX_CONTENT, {.cmplx = parse_extension_node} },
416           {NULL,           UNKNOWN_CONTENT, {NULL} }
417         };
418
419     input_item_t *p_new_input = input_item_New( p_demux, NULL, NULL );
420
421     if( !p_new_input )
422     {
423         /* malloc has failed for input_item_New, so bailout early */
424         return false;
425     }
426
427     /* reset i_track_id */
428     p_demux->p_sys->i_track_id = -1;
429
430     while( xml_ReaderRead( p_xml_reader ) == 1 )
431     {
432         i_node = xml_ReaderNodeType( p_xml_reader );
433         switch( i_node )
434         {
435             case XML_READER_NONE:
436                 break;
437
438             case XML_READER_STARTELEM:
439                 /*  element start tag  */
440                 psz_name = xml_ReaderName( p_xml_reader );
441                 if( !psz_name || !*psz_name )
442                 {
443                     msg_Err( p_demux, "invalid xml stream" );
444                     FREE_ATT();
445                     return false;
446                 }
447                 /* choose handler */
448                 for( p_handler = track_elements;
449                      p_handler->name && strcmp( psz_name, p_handler->name );
450                      p_handler++ );
451                 if( !p_handler->name )
452                 {
453                     msg_Err( p_demux, "unexpected element <%s>", psz_name );
454                     FREE_ATT();
455                     return false;
456                 }
457                 FREE_NAME();
458                 /* complex content is parsed in a separate function */
459                 if( p_handler->type == COMPLEX_CONTENT )
460                 {
461                     if( !p_new_input )
462                     {
463                         msg_Err( p_demux,
464                                  "at <%s> level no new item has been allocated",
465                                  p_handler->name );
466                         FREE_ATT();
467                         return false;
468                     }
469                     if( p_handler->pf_handler.cmplx( p_demux,
470                                                      p_new_input,
471                                                      p_xml_reader,
472                                                      p_handler->name ) )
473                     {
474                         p_handler = NULL;
475                         FREE_ATT();
476                     }
477                     else
478                     {
479                         FREE_ATT();
480                         return false;
481                     }
482                 }
483                 break;
484
485             case XML_READER_TEXT:
486                 /* simple element content */
487                 FREE_ATT();
488                 psz_value = xml_ReaderValue( p_xml_reader );
489                 if( !psz_value )
490                 {
491                     msg_Err( p_demux, "invalid xml stream" );
492                     FREE_ATT();
493                     return false;
494                 }
495                 break;
496
497             case XML_READER_ENDELEM:
498                 /* element end tag */
499                 psz_name = xml_ReaderName( p_xml_reader );
500                 if( !psz_name )
501                 {
502                     msg_Err( p_demux, "invalid xml stream" );
503                     FREE_ATT();
504                     return false;
505                 }
506
507                 /* leave if the current parent node <track> is terminated */
508                 if( !strcmp( psz_name, psz_element ) )
509                 {
510                     FREE_ATT();
511
512                     /* Make sure we have a URI */
513                     char *psz_uri = input_item_GetURI( p_new_input );
514                     if( !psz_uri )
515                     {
516                         input_item_SetURI( p_new_input, "vlc://nop" );
517                     }
518                     free( psz_uri );
519
520                     if( p_demux->p_sys->i_track_id < 0 )
521                     {
522                         input_item_AddSubItem( p_input_item, p_new_input );
523                         vlc_gc_decref( p_new_input );
524                         return true;
525                     }
526
527                     if( p_demux->p_sys->i_track_id >=
528                            p_demux->p_sys->i_tracklist_entries )
529                     {
530                         input_item_t **pp;
531                         pp = realloc( p_demux->p_sys->pp_tracklist,
532                             (p_demux->p_sys->i_track_id + 1) * sizeof(*pp) );
533                         if( !pp )
534                             return false;
535                         p_demux->p_sys->pp_tracklist = pp;
536                         while( p_demux->p_sys->i_track_id >=
537                                p_demux->p_sys->i_tracklist_entries )
538                             pp[p_demux->p_sys->i_tracklist_entries++] = NULL;
539                     }
540
541                     p_demux->p_sys->pp_tracklist[
542                             p_demux->p_sys->i_track_id ] = p_new_input;
543                     return true;
544                 }
545                 /* there MUST have been a start tag for that element name */
546                 if( !p_handler || !p_handler->name
547                     || strcmp( p_handler->name, psz_name ))
548                 {
549                     msg_Err( p_demux, "there's no open element left for <%s>",
550                              psz_name );
551                     FREE_ATT();
552                     return false;
553                 }
554
555                 /* special case: location */
556                 if( !strcmp( p_handler->name, "location" ) )
557                 {
558                     /* FIXME: This is broken. Scheme-relative (//...) locations
559                      * and anchors (#...) are not resolved correctly. Also,
560                      * host-relative (/...) and directory-relative locations
561                      * ("relative path" in vernacular) should be resolved.
562                      * Last, psz_base should default to the XSPF resource
563                      * location if missing (not the current working directory).
564                      * -- Courmisch */
565                     if( p_demux->p_sys->psz_base && !strstr( psz_value, "://" ) )
566                     {
567                         char* psz_tmp;
568                         if( asprintf( &psz_tmp, "%s%s",
569                                 p_demux->p_sys->psz_base, psz_value ) == -1 )
570                         {
571                             FREE_ATT();
572                             return NULL;
573                         }
574                         input_item_SetURI( p_new_input, psz_tmp );
575                         free( psz_tmp );
576                     }
577                     else
578                         input_item_SetURI( p_new_input, psz_value );
579                     input_item_CopyOptions( p_input_item, p_new_input );
580                     FREE_ATT();
581                     p_handler = NULL;
582                 }
583                 else
584                 {
585                     /* there MUST be an item */
586                     if( !p_new_input )
587                     {
588                         msg_Err( p_demux, "item not yet created at <%s>",
589                                  psz_name );
590                         FREE_ATT();
591                         return false;
592                     }
593                     if( p_handler->pf_handler.smpl )
594                     {
595                         p_handler->pf_handler.smpl( p_new_input,
596                                                     p_handler->name,
597                                                     psz_value );
598                         FREE_ATT();
599                     }
600                 }
601                 FREE_ATT();
602                 p_handler = NULL;
603                 break;
604
605             default:
606                 /* unknown/unexpected xml node */
607                 msg_Err( p_demux, "unexpected xml node %i", i_node );
608                 FREE_ATT();
609                 return false;
610         }
611         FREE_NAME();
612     }
613     msg_Err( p_demux, "unexpected end of xml data" );
614     FREE_ATT();
615     return false;
616 }
617
618 /**
619  * \brief handles the supported <track> sub-elements
620  */
621 static bool set_item_info SIMPLE_INTERFACE
622 {
623     /* exit if setting is impossible */
624     if( !psz_name || !psz_value || !p_input )
625         return false;
626
627
628     /* re-convert xml special characters inside psz_value */
629     resolve_xml_special_chars( psz_value );
630
631     /* handle each info element in a separate "if" clause */
632     if( !strcmp( psz_name, "title" ) )
633     {
634         input_item_SetTitle( p_input, psz_value );
635     }
636     else if( !strcmp( psz_name, "creator" ) )
637     {
638         input_item_SetArtist( p_input, psz_value );
639     }
640     else if( !strcmp( psz_name, "album" ) )
641     {
642         input_item_SetAlbum( p_input, psz_value );
643
644     }
645     else if( !strcmp( psz_name, "trackNum" ) )
646     {
647         input_item_SetTrackNum( p_input, psz_value );
648     }
649     else if( !strcmp( psz_name, "duration" ) )
650     {
651         long i_num = atol( psz_value );
652         input_item_SetDuration( p_input, (mtime_t) i_num*1000 );
653     }
654     else if( !strcmp( psz_name, "annotation" ) )
655     {
656         input_item_SetDescription( p_input, psz_value );
657     }
658     else if( !strcmp( psz_name, "image" ) )
659     {
660         input_item_SetArtURL( p_input, psz_value );
661     }
662     return true;
663 }
664
665 /**
666  * \brief handles the <vlc:option> elements
667  */
668 static bool set_option SIMPLE_INTERFACE
669 {
670     /* exit if setting is impossible */
671     if( !psz_name || !psz_value || !p_input )
672         return false;
673
674     /* re-convert xml special characters inside psz_value */
675     resolve_xml_special_chars( psz_value );
676
677     input_item_AddOption( p_input, psz_value, 0 );
678
679     return true;
680 }
681
682 /**
683  * \brief parse the extension node of a XSPF playlist
684  */
685 static bool parse_extension_node COMPLEX_INTERFACE
686 {
687     char *psz_name = NULL;
688     char *psz_value = NULL;
689     char *psz_title = NULL;
690     char *psz_application = NULL;
691     int i_node;
692     bool b_release_input_item = false;
693     xml_elem_hnd_t *p_handler = NULL;
694     input_item_t *p_new_input = NULL;
695
696     xml_elem_hnd_t pl_elements[] =
697         { {"vlc:node",   COMPLEX_CONTENT, {.cmplx = parse_extension_node} },
698           {"vlc:item",   COMPLEX_CONTENT, {.cmplx = parse_extitem_node} },
699           {"vlc:id",     SIMPLE_CONTENT, {NULL} },
700           {"vlc:option", SIMPLE_CONTENT, {.smpl = set_option} },
701           {NULL,    UNKNOWN_CONTENT, {NULL} }
702         };
703
704     /* read all extension node attributes */
705     while( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
706     {
707         psz_name = xml_ReaderName( p_xml_reader );
708         psz_value = xml_ReaderValue( p_xml_reader );
709         if( !psz_name || !psz_value )
710         {
711             msg_Err( p_demux, "invalid xml stream @ <vlc:node>" );
712             FREE_ATT();
713             return false;
714         }
715         /* attribute: title */
716         if( !strcmp( psz_name, "title" ) )
717         {
718             resolve_xml_special_chars( psz_value );
719             psz_title = psz_value;
720         }
721         /* extension attribute: application */
722         else if( !strcmp( psz_name, "application" ) )
723         {
724             psz_application = psz_value;
725         }
726         /* unknown attribute */
727         else
728         {
729             msg_Warn( p_demux, "invalid <%s> attribute:\"%s\"", psz_element,
730                       psz_name );
731             FREE_VALUE();
732         }
733         FREE_NAME();
734         psz_value = NULL;
735     }
736
737     /* attribute title is mandatory except for <extension> */
738     if( !strcmp( psz_element, "vlc:node" ) )
739     {
740         if( !psz_title )
741         {
742             msg_Warn( p_demux, "<vlc:node> requires \"title\" attribute" );
743             return false;
744         }
745         p_new_input = input_item_NewWithType( VLC_OBJECT( p_demux ),
746                           "vlc://nop", psz_title, 0, NULL, 0, -1,
747                           ITEM_TYPE_DIRECTORY );
748         if( p_new_input )
749         {
750             input_item_AddSubItem( p_input_item, p_new_input );
751             p_input_item = p_new_input;
752             b_release_input_item = true;
753         }
754         free( psz_title );
755     }
756     else if( !strcmp( psz_element, "extension" ) )
757     {
758         if( !psz_application )
759         {
760             msg_Warn( p_demux, "<extension> requires \"application\" attribute" );
761             return false;
762         }
763         else if( strcmp( psz_application, "http://www.videolan.org/vlc/playlist/0" ) )
764         {
765             msg_Dbg( p_demux, "Skipping \"%s\" extension tag", psz_application );
766             free( psz_application );
767             return false;
768         }
769     }
770     free( psz_application );
771
772     /* parse the child elements */
773     while( xml_ReaderRead( p_xml_reader ) == 1 )
774     {
775         i_node = xml_ReaderNodeType( p_xml_reader );
776         switch( i_node )
777         {
778             case XML_READER_NONE:
779                 break;
780             case XML_READER_STARTELEM:
781                 /*  element start tag  */
782                 psz_name = xml_ReaderName( p_xml_reader );
783                 if( !psz_name || !*psz_name )
784                 {
785                     msg_Err( p_demux, "invalid xml stream" );
786                     FREE_ATT();
787                     if( b_release_input_item ) vlc_gc_decref( p_new_input );
788                     return false;
789                 }
790                 /* choose handler */
791                 for( p_handler = pl_elements;
792                      p_handler->name && strcmp( psz_name, p_handler->name );
793                      p_handler++ );
794                 if( !p_handler->name )
795                 {
796                     msg_Err( p_demux, "unexpected element <%s>", psz_name );
797                     FREE_ATT();
798                     if( b_release_input_item ) vlc_gc_decref( p_new_input );
799                     return false;
800                 }
801                 FREE_NAME();
802                 /* complex content is parsed in a separate function */
803                 if( p_handler->type == COMPLEX_CONTENT )
804                 {
805                     if( p_handler->pf_handler.cmplx( p_demux,
806                                                      p_input_item,
807                                                      p_xml_reader,
808                                                      p_handler->name ) )
809                     {
810                         p_handler = NULL;
811                         FREE_ATT();
812                     }
813                     else
814                     {
815                         FREE_ATT();
816                         if( b_release_input_item ) vlc_gc_decref( p_new_input );
817                         return false;
818                     }
819                 }
820                 break;
821
822             case XML_READER_TEXT:
823                 /* simple element content */
824                 FREE_ATT();
825                 psz_value = xml_ReaderValue( p_xml_reader );
826                 if( !psz_value )
827                 {
828                     msg_Err( p_demux, "invalid xml stream" );
829                     FREE_ATT();
830                     if( b_release_input_item ) vlc_gc_decref( p_new_input );
831                     return false;
832                 }
833                 break;
834
835             case XML_READER_ENDELEM:
836                 /* element end tag */
837                 psz_name = xml_ReaderName( p_xml_reader );
838                 if( !psz_name )
839                 {
840                     msg_Err( p_demux, "invalid xml stream" );
841                     FREE_ATT();
842                     if( b_release_input_item ) vlc_gc_decref( p_new_input );
843                     return false;
844                 }
845                 /* leave if the current parent node is terminated */
846                 if( !strcmp( psz_name, psz_element ) )
847                 {
848                     FREE_ATT();
849                     if( b_release_input_item ) vlc_gc_decref( p_new_input );
850                     return true;
851                 }
852                 /* there MUST have been a start tag for that element name */
853                 if( !p_handler || !p_handler->name
854                     || strcmp( p_handler->name, psz_name ))
855                 {
856                     msg_Err( p_demux, "there's no open element left for <%s>",
857                              psz_name );
858                     FREE_ATT();
859                     if( b_release_input_item ) vlc_gc_decref( p_new_input );
860                     return false;
861                 }
862
863                 /* special tag <vlc:id> */
864                 if( !strcmp( p_handler->name, "vlc:id" ) )
865                 {
866                     p_demux->p_sys->i_track_id = atoi( psz_value );
867                 }
868                 else if( p_handler->pf_handler.smpl )
869                 {
870                     p_handler->pf_handler.smpl( p_input_item, p_handler->name,
871                                                 psz_value );
872                 }
873                 FREE_ATT();
874                 p_handler = NULL;
875                 break;
876
877             default:
878                 /* unknown/unexpected xml node */
879                 msg_Err( p_demux, "unexpected xml node %i", i_node );
880                 FREE_ATT();
881                 if( b_release_input_item ) vlc_gc_decref( p_new_input );
882                 return false;
883         }
884         FREE_NAME();
885     }
886     if( b_release_input_item ) vlc_gc_decref( p_new_input );
887     return false;
888 }
889
890 /**
891  * \brief parse the extension item node of a XSPF playlist
892  */
893 static bool parse_extitem_node COMPLEX_INTERFACE
894 {
895     VLC_UNUSED(psz_element);
896     input_item_t *p_new_input = NULL;
897     char *psz_name = NULL;
898     char *psz_value = NULL;
899     int i_tid = -1;
900
901     /* read all extension item attributes */
902     while( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
903     {
904         psz_name = xml_ReaderName( p_xml_reader );
905         psz_value = xml_ReaderValue( p_xml_reader );
906         if( !psz_name || !psz_value )
907         {
908             msg_Err( p_demux, "invalid xml stream @ <vlc:item>" );
909             FREE_ATT();
910             return false;
911         }
912         /* attribute: href */
913         if( !strcmp( psz_name, "tid" ) )
914         {
915             i_tid = atoi( psz_value );
916         }
917         /* unknown attribute */
918         else
919             msg_Warn( p_demux, "invalid <vlc:item> attribute:\"%s\"", psz_name);
920
921         FREE_ATT();
922     }
923
924     /* attribute href is mandatory */
925     if( i_tid < 0 )
926     {
927         msg_Warn( p_demux, "<vlc:item> requires \"tid\" attribute" );
928         return false;
929     }
930
931     if( i_tid >= p_demux->p_sys->i_tracklist_entries )
932     {
933         msg_Warn( p_demux, "invalid \"tid\" attribute" );
934         return false;
935     }
936
937     p_new_input = p_demux->p_sys->pp_tracklist[ i_tid ];
938     if( p_new_input )
939     {
940         input_item_AddSubItem( p_input_item, p_new_input );
941         vlc_gc_decref( p_new_input );
942         p_demux->p_sys->pp_tracklist[i_tid] = NULL;
943     }
944
945     /* kludge for #1293 - XTAG sends ENDELEM for self closing tag */
946     /* (libxml sends NONE) */
947     xml_ReaderRead( p_xml_reader );
948
949     return true;
950 }
951
952 /**
953  * \brief skips complex element content that we can't manage
954  */
955 static bool skip_element COMPLEX_INTERFACE
956 {
957     VLC_UNUSED(p_demux); VLC_UNUSED(p_input_item);
958     char *psz_endname;
959
960     while( xml_ReaderRead( p_xml_reader ) == 1 )
961     {
962         if( xml_ReaderNodeType( p_xml_reader ) == XML_READER_ENDELEM )
963         {
964             psz_endname = xml_ReaderName( p_xml_reader );
965             if( !psz_endname )
966                 return false;
967             if( !strcmp( psz_element, psz_endname ) )
968             {
969                 free( psz_endname );
970                 return true;
971             }
972             else
973                 free( psz_endname );
974         }
975     }
976     return false;
977 }