]> git.sesse.net Git - vlc/blob - modules/access/mms/mmsh.c
input_item: Remove input_item_AddSubItem2 and send subitem_added event from input_ite...
[vlc] / modules / access / mms / mmsh.c
1 /*****************************************************************************
2  * mmsh.c:
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_access.h>
34 #include <vlc_strings.h>
35 #include <vlc_input.h>
36
37 #include <vlc_network.h>
38 #include <vlc_url.h>
39 #include "asf.h"
40 #include "buffer.h"
41
42 #include "mms.h"
43 #include "mmsh.h"
44
45 /* TODO:
46  *  - authentication
47  */
48
49 /*****************************************************************************
50  * Local prototypes
51  *****************************************************************************/
52 int  MMSHOpen  ( access_t * );
53 void MMSHClose ( access_t * );
54
55 static block_t *Block( access_t *p_access );
56 static ssize_t ReadRedirect( access_t *, uint8_t *, size_t );
57 static int  Seek( access_t *, uint64_t );
58 static int  Control( access_t *, int, va_list );
59
60 static int  Describe( access_t  *, char **ppsz_location );
61 static int  Start( access_t *, uint64_t );
62 static void Stop( access_t * );
63
64 static int  GetPacket( access_t *, chunk_t * );
65 static void GetHeader( access_t *p_access );
66
67 static int Restart( access_t * );
68 static int Reset( access_t * );
69
70 //#define MMSH_USER_AGENT "NSPlayer/4.1.0.3856"
71 #define MMSH_USER_AGENT "NSPlayer/7.10.0.3059"
72
73 /****************************************************************************
74  * Open: connect to ftp server and ask for file
75  ****************************************************************************/
76 int MMSHOpen( access_t *p_access )
77 {
78     access_sys_t    *p_sys;
79     char            *psz_location = NULL;
80     char            *psz_proxy;
81
82     STANDARD_BLOCK_ACCESS_INIT
83
84     p_sys->i_proto= MMS_PROTO_HTTP;
85     p_sys->fd     = -1;
86
87     /* Handle proxy */
88     p_sys->b_proxy = false;
89     memset( &p_sys->proxy, 0, sizeof(p_sys->proxy) );
90
91     /* Check proxy */
92     /* TODO reuse instead http-proxy from http access ? */
93     psz_proxy = var_CreateGetNonEmptyString( p_access, "mmsh-proxy" );
94     if( !psz_proxy )
95     {
96         char *psz_http_proxy = var_InheritString( p_access, "http-proxy" );
97         if( psz_http_proxy )
98         {
99             psz_proxy = psz_http_proxy;
100             var_SetString( p_access, "mmsh-proxy", psz_proxy );
101         }
102     }
103
104     if( psz_proxy )
105     {
106         p_sys->b_proxy = true;
107         vlc_UrlParse( &p_sys->proxy, psz_proxy, 0 );
108         free( psz_proxy );
109     }
110 #ifdef HAVE_GETENV
111     else
112     {
113         const char *http_proxy = getenv( "http_proxy" );
114         if( http_proxy )
115         {
116             p_sys->b_proxy = true;
117             vlc_UrlParse( &p_sys->proxy, http_proxy, 0 );
118         }
119     }
120 #endif
121
122     if( p_sys->b_proxy )
123     {
124         if( ( p_sys->proxy.psz_host == NULL ) ||
125             ( *p_sys->proxy.psz_host == '\0' ) )
126         {
127             msg_Warn( p_access, "invalid proxy host" );
128             vlc_UrlClean( &p_sys->proxy );
129             free( p_sys );
130             return VLC_EGENERIC;
131         }
132
133         if( p_sys->proxy.i_port <= 0 )
134             p_sys->proxy.i_port = 80;
135         msg_Dbg( p_access, "Using http proxy %s:%d",
136                  p_sys->proxy.psz_host, p_sys->proxy.i_port );
137     }
138
139     /* open a tcp connection */
140     vlc_UrlParse( &p_sys->url, p_access->psz_path, 0 );
141     if( ( p_sys->url.psz_host == NULL ) ||
142         ( *p_sys->url.psz_host == '\0' ) )
143     {
144         msg_Err( p_access, "invalid host" );
145         goto error;
146     }
147     if( p_sys->url.i_port <= 0 )
148         p_sys->url.i_port = 80;
149
150     if( Describe( p_access, &psz_location ) )
151         goto error;
152
153     /* Handle redirection */
154     if( psz_location && *psz_location )
155     {
156         msg_Dbg( p_access, "redirection to %s", psz_location );
157
158         input_thread_t * p_input = access_GetParentInput( p_access );
159         input_item_t * p_new_loc;
160
161         if( !p_input )
162         {
163             free( psz_location );
164             goto error;
165         }
166         /** \bug we do not autodelete here */
167         p_new_loc = input_item_New( p_access, psz_location, psz_location );
168         input_item_t *p_item = input_GetItem( p_input );
169         input_item_AddSubItem( p_item, p_new_loc );
170
171         vlc_gc_decref( p_new_loc );
172         vlc_object_release( p_input );
173
174         free( psz_location );
175
176         p_access->pf_block = NULL;
177         p_access->pf_read = ReadRedirect;
178         return VLC_SUCCESS;
179     }
180     free( psz_location );
181
182     /* Start playing */
183     if( Start( p_access, 0 ) )
184     {
185         msg_Err( p_access, "cannot start stream" );
186         free( p_sys->p_header );
187         goto error;
188     }
189
190     if( !p_sys->b_broadcast )
191     {
192         p_access->info.i_size = p_sys->asfh.i_file_size;
193     }
194
195     return VLC_SUCCESS;
196
197 error:
198     vlc_UrlClean( &p_sys->proxy );
199     vlc_UrlClean( &p_sys->url );
200     free( p_sys );
201     return VLC_EGENERIC;
202 }
203
204 /*****************************************************************************
205  * Close: free unused data structures
206  *****************************************************************************/
207 void  MMSHClose ( access_t *p_access )
208 {
209     access_sys_t *p_sys = p_access->p_sys;
210
211     Stop( p_access );
212
213     free( p_sys->p_header );
214
215     vlc_UrlClean( &p_sys->proxy );
216     vlc_UrlClean( &p_sys->url );
217     free( p_sys );
218 }
219
220 /*****************************************************************************
221  * Control:
222  *****************************************************************************/
223 static int Control( access_t *p_access, int i_query, va_list args )
224 {
225     access_sys_t *p_sys = p_access->p_sys;
226     bool   *pb_bool;
227     bool    b_bool;
228     int64_t      *pi_64;
229     int          i_int;
230
231     switch( i_query )
232     {
233         /* */
234         case ACCESS_CAN_SEEK:
235             pb_bool = (bool*)va_arg( args, bool* );
236             *pb_bool = !p_sys->b_broadcast;
237             break;
238
239         case ACCESS_CAN_FASTSEEK:
240             pb_bool = (bool*)va_arg( args, bool* );
241             *pb_bool = false;
242             break;
243
244         case ACCESS_CAN_PAUSE:
245         case ACCESS_CAN_CONTROL_PACE:
246             pb_bool = (bool*)va_arg( args, bool* );
247             *pb_bool = true;
248             break;
249
250         /* */
251         case ACCESS_GET_PTS_DELAY:
252             pi_64 = (int64_t*)va_arg( args, int64_t * );
253             *pi_64 = (int64_t)var_GetInteger( p_access, "mms-caching" ) * INT64_C(1000);
254             break;
255
256         case ACCESS_GET_PRIVATE_ID_STATE:
257             i_int = (int)va_arg( args, int );
258             pb_bool = (bool *)va_arg( args, bool * );
259
260             if( (i_int < 0) || (i_int > 127) )
261                 return VLC_EGENERIC;
262             *pb_bool =  p_sys->asfh.stream[i_int].i_selected ? true : false;
263             break;
264
265         /* */
266         case ACCESS_SET_PAUSE_STATE:
267             b_bool = (bool)va_arg( args, int );
268             if( b_bool )
269                 Stop( p_access );
270             else
271                 Seek( p_access, p_access->info.i_pos );
272             break;
273
274         case ACCESS_GET_TITLE_INFO:
275         case ACCESS_SET_TITLE:
276         case ACCESS_SET_SEEKPOINT:
277         case ACCESS_SET_PRIVATE_ID_STATE:
278         case ACCESS_GET_CONTENT_TYPE:
279             return VLC_EGENERIC;
280
281         default:
282             msg_Warn( p_access, "unimplemented query in control" );
283             return VLC_EGENERIC;
284
285     }
286     return VLC_SUCCESS;
287 }
288
289 /*****************************************************************************
290  * Seek: try to go at the right place
291  *****************************************************************************/
292 static int Seek( access_t *p_access, uint64_t i_pos )
293 {
294     access_sys_t *p_sys = p_access->p_sys;
295     chunk_t      ck;
296     uint64_t     i_offset;
297     uint64_t     i_packet;
298
299     msg_Dbg( p_access, "seeking to %"PRId64, i_pos );
300
301     i_packet = ( i_pos - p_sys->i_header ) / p_sys->asfh.i_min_data_packet_size;
302     i_offset = ( i_pos - p_sys->i_header ) % p_sys->asfh.i_min_data_packet_size;
303
304     Stop( p_access );
305     Start( p_access, i_packet * p_sys->asfh.i_min_data_packet_size );
306
307     while( vlc_object_alive (p_access) )
308     {
309         if( GetPacket( p_access, &ck ) )
310             break;
311
312         /* skip headers */
313         if( ck.i_type != 0x4824 )
314             break;
315
316         msg_Warn( p_access, "skipping header" );
317     }
318
319     p_access->info.i_pos = i_pos;
320     p_access->info.b_eof = false;
321     p_sys->i_packet_used += i_offset;
322
323     return VLC_SUCCESS;
324 }
325
326 /*****************************************************************************
327  * ReadRedirect:
328  *****************************************************************************/
329 static ssize_t ReadRedirect( access_t *p_access, uint8_t *p, size_t i_len )
330 {
331     VLC_UNUSED(p_access); VLC_UNUSED(p); VLC_UNUSED(i_len);
332     return 0;
333 }
334
335 /*****************************************************************************
336  * Block:
337  *****************************************************************************/
338 static block_t *Block( access_t *p_access )
339 {
340     access_sys_t *p_sys = p_access->p_sys;
341     const unsigned i_packet_min = p_sys->asfh.i_min_data_packet_size;
342
343     if( p_access->info.i_pos < p_sys->i_start + p_sys->i_header )
344     {
345         const size_t i_offset = p_access->info.i_pos - p_sys->i_start;
346         const size_t i_copy = p_sys->i_header - i_offset;
347
348         block_t *p_block = block_New( p_access, i_copy );
349         if( !p_block )
350             return NULL;
351
352         memcpy( p_block->p_buffer, &p_sys->p_header[i_offset], i_copy );
353         p_access->info.i_pos += i_copy;
354         return p_block;
355     }
356     else if( p_sys->i_packet_length > 0 &&
357              p_sys->i_packet_used < __MAX( p_sys->i_packet_length, i_packet_min ) )
358     {
359         size_t i_copy = 0;
360         size_t i_padding = 0;
361
362         if( p_sys->i_packet_used < p_sys->i_packet_length )
363             i_copy = p_sys->i_packet_length - p_sys->i_packet_used;
364         if( __MAX( p_sys->i_packet_used, p_sys->i_packet_length ) < i_packet_min )
365             i_padding = i_packet_min - __MAX( p_sys->i_packet_used, p_sys->i_packet_length );
366
367         block_t *p_block = block_New( p_access, i_copy + i_padding );
368         if( !p_block )
369             return NULL;
370
371         if( i_copy > 0 )
372             memcpy( &p_block->p_buffer[0], &p_sys->p_packet[p_sys->i_packet_used], i_copy );
373         if( i_padding > 0 )
374             memset( &p_block->p_buffer[i_copy], 0, i_padding );
375
376         p_sys->i_packet_used += i_copy + i_padding;
377         p_access->info.i_pos += i_copy + i_padding;
378         return p_block;
379
380     }
381
382     chunk_t ck;
383     if( GetPacket( p_access, &ck ) )
384     {
385         int i_ret = -1;
386         if( p_sys->b_broadcast )
387         {
388             if( (ck.i_type == 0x4524) && (ck.i_sequence != 0) )
389                 i_ret = Restart( p_access );
390             else if( ck.i_type == 0x4324 )
391                 i_ret = Reset( p_access );
392         }
393         if( i_ret )
394         {
395             p_access->info.b_eof = true;
396             return 0;
397         }
398     }
399     if( ck.i_type != 0x4424 )
400     {
401         p_sys->i_packet_used = 0;
402         p_sys->i_packet_length = 0;
403     }
404
405     return NULL;
406 }
407
408 /* */
409 static int Restart( access_t *p_access )
410 {
411     access_sys_t *p_sys = p_access->p_sys;
412     char *psz_location = NULL;
413
414     msg_Dbg( p_access, "Restart the stream" );
415     p_sys->i_start = p_access->info.i_pos;
416
417     /* */
418     msg_Dbg( p_access, "stoping the stream" );
419     Stop( p_access );
420
421     /* */
422     msg_Dbg( p_access, "describe the stream" );
423     if( Describe( p_access, &psz_location ) )
424     {
425         msg_Err( p_access, "describe failed" );
426         return VLC_EGENERIC;
427     }
428     free( psz_location );
429
430     /* */
431     if( Start( p_access, 0 ) )
432     {
433         msg_Err( p_access, "Start failed" );
434         return VLC_EGENERIC;
435     }
436     return VLC_SUCCESS;
437 }
438 static int Reset( access_t *p_access )
439 {
440     access_sys_t *p_sys = p_access->p_sys;
441     asf_header_t old_asfh = p_sys->asfh;
442     int i;
443
444     msg_Dbg( p_access, "Reset the stream" );
445     p_sys->i_start = p_access->info.i_pos;
446
447     /* */
448     p_sys->i_packet_sequence = 0;
449     p_sys->i_packet_used = 0;
450     p_sys->i_packet_length = 0;
451     p_sys->p_packet = NULL;
452
453     /* Get the next header FIXME memory loss ? */
454     GetHeader( p_access );
455     if( p_sys->i_header <= 0 )
456         return VLC_EGENERIC;
457
458     asf_HeaderParse ( &p_sys->asfh,
459                        p_sys->p_header, p_sys->i_header );
460     msg_Dbg( p_access, "packet count=%"PRId64" packet size=%d",
461              p_sys->asfh.i_data_packets_count,
462              p_sys->asfh.i_min_data_packet_size );
463
464     asf_StreamSelect( &p_sys->asfh,
465                        var_CreateGetInteger( p_access, "mms-maxbitrate" ),
466                        var_CreateGetBool( p_access, "mms-all" ),
467                        var_CreateGetInteger( p_access, "audio" ),
468                        var_CreateGetInteger( p_access, "video" ) );
469
470     /* Check we have comptible asfh */
471     for( i = 1; i < 128; i++ )
472     {
473         asf_stream_t *p_old = &old_asfh.stream[i];
474         asf_stream_t *p_new = &p_sys->asfh.stream[i];
475
476         if( p_old->i_cat != p_new->i_cat || p_old->i_selected != p_new->i_selected )
477             break;
478     }
479     if( i < 128 )
480     {
481         msg_Warn( p_access, "incompatible asf header, restart" );
482         return Restart( p_access );
483     }
484
485     /* */
486     p_sys->i_packet_used = 0;
487     p_sys->i_packet_length = 0;
488     return VLC_SUCCESS;
489 }
490
491 static int OpenConnection( access_t *p_access )
492 {
493     access_sys_t *p_sys = p_access->p_sys;
494     vlc_url_t    srv = p_sys->b_proxy ? p_sys->proxy : p_sys->url;
495
496     if( ( p_sys->fd = net_ConnectTCP( p_access,
497                                       srv.psz_host, srv.i_port ) ) < 0 )
498     {
499         msg_Err( p_access, "cannot connect to %s:%d",
500                  srv.psz_host, srv.i_port );
501         return VLC_EGENERIC;
502     }
503
504     if( p_sys->b_proxy )
505     {
506         net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
507                     "GET http://%s:%d%s HTTP/1.0\r\n",
508                     p_sys->url.psz_host, p_sys->url.i_port,
509                     ( (p_sys->url.psz_path == NULL) ||
510                       (*p_sys->url.psz_path == '\0') ) ?
511                          "/" : p_sys->url.psz_path );
512
513         /* Proxy Authentication */
514         if( p_sys->proxy.psz_username && *p_sys->proxy.psz_username )
515         {
516             char *buf;
517             char *b64;
518
519             if( asprintf( &buf, "%s:%s", p_sys->proxy.psz_username,
520                        p_sys->proxy.psz_password ? p_sys->proxy.psz_password : "" ) == -1 )
521                 return VLC_ENOMEM;
522
523             b64 = vlc_b64_encode( buf );
524             free( buf );
525
526             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
527                         "Proxy-Authorization: Basic %s\r\n", b64 );
528             free( b64 );
529         }
530     }
531     else
532     {
533         net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
534                     "GET %s HTTP/1.0\r\n"
535                     "Host: %s:%d\r\n",
536                     ( (p_sys->url.psz_path == NULL) ||
537                       (*p_sys->url.psz_path == '\0') ) ?
538                             "/" : p_sys->url.psz_path,
539                     p_sys->url.psz_host, p_sys->url.i_port );
540     }
541     return VLC_SUCCESS;
542 }
543
544 /*****************************************************************************
545  * Describe:
546  *****************************************************************************/
547 static int Describe( access_t  *p_access, char **ppsz_location )
548 {
549     access_sys_t *p_sys = p_access->p_sys;
550     char         *psz_location = NULL;
551     char         *psz;
552     int          i_code;
553
554     /* Reinit context */
555     p_sys->b_broadcast = true;
556     p_sys->i_request_context = 1;
557     p_sys->i_packet_sequence = 0;
558     p_sys->i_packet_used = 0;
559     p_sys->i_packet_length = 0;
560     p_sys->p_packet = NULL;
561
562     GenerateGuid ( &p_sys->guid );
563
564     if( OpenConnection( p_access ) )
565         return VLC_EGENERIC;
566
567     net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
568                 "Accept: */*\r\n"
569                 "User-Agent: "MMSH_USER_AGENT"\r\n"
570                 "Pragma: no-cache,rate=1.000000,stream-time=0,stream-offset=0:0,request-context=%d,max-duration=0\r\n"
571                 "Pragma: xClientGUID={"GUID_FMT"}\r\n"
572                 "Connection: Close\r\n",
573                 p_sys->i_request_context++,
574                 GUID_PRINT( p_sys->guid ) );
575
576     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" ) < 0 )
577     {
578         msg_Err( p_access, "failed to send request" );
579         goto error;
580     }
581
582     /* Receive the http header */
583     if( ( psz = net_Gets( p_access, p_sys->fd, NULL ) ) == NULL )
584     {
585         msg_Err( p_access, "failed to read answer" );
586         goto error;
587     }
588
589     if( strncmp( psz, "HTTP/1.", 7 ) )
590     {
591         msg_Err( p_access, "invalid HTTP reply '%s'", psz );
592         free( psz );
593         goto error;
594     }
595     i_code = atoi( &psz[9] );
596     if( i_code >= 400 )
597     {
598         msg_Err( p_access, "error: %s", psz );
599         free( psz );
600         goto error;
601     }
602
603     msg_Dbg( p_access, "HTTP reply '%s'", psz );
604     free( psz );
605     for( ;; )
606     {
607         char *psz = net_Gets( p_access, p_sys->fd, NULL );
608         char *p;
609
610         if( psz == NULL )
611         {
612             msg_Err( p_access, "failed to read answer" );
613             goto error;
614         }
615
616         if( *psz == '\0' )
617         {
618             free( psz );
619             break;
620         }
621
622         if( ( p = strchr( psz, ':' ) ) == NULL )
623         {
624             msg_Err( p_access, "malformed header line: %s", psz );
625             free( psz );
626             goto error;
627         }
628         *p++ = '\0';
629         while( *p == ' ' ) p++;
630
631         /* FIXME FIXME test Content-Type to see if it's a plain stream or an
632          * asx FIXME */
633         if( !strcasecmp( psz, "Pragma" ) )
634         {
635             if( strstr( p, "features" ) )
636             {
637                 /* FIXME, it is a bit badly done here ..... */
638                 if( strstr( p, "broadcast" ) )
639                 {
640                     msg_Dbg( p_access, "stream type = broadcast" );
641                     p_sys->b_broadcast = true;
642                 }
643                 else if( strstr( p, "seekable" ) )
644                 {
645                     msg_Dbg( p_access, "stream type = seekable" );
646                     p_sys->b_broadcast = false;
647                 }
648                 else
649                 {
650                     msg_Warn( p_access, "unknow stream types (%s)", p );
651                     p_sys->b_broadcast = false;
652                 }
653             }
654         }
655         else if( !strcasecmp( psz, "Location" ) )
656         {
657             psz_location = strdup( p );
658         }
659
660         free( psz );
661     }
662
663     /* Handle the redirection */
664     if( ( (i_code == 301) || (i_code == 302) ||
665           (i_code == 303) || (i_code == 307) ) &&
666         psz_location && *psz_location )
667     {
668         msg_Dbg( p_access, "redirection to %s", psz_location );
669         net_Close( p_sys->fd ); p_sys->fd = -1;
670
671         *ppsz_location = psz_location;
672         return VLC_SUCCESS;
673     }
674     free( psz_location );
675
676     /* Read the asf header */
677     GetHeader( p_access );
678     if( p_sys->i_header <= 0 )
679     {
680         msg_Err( p_access, "header size == 0" );
681         goto error;
682     }
683     /* close this connection */
684     net_Close( p_sys->fd );
685     p_sys->fd = -1;
686
687     /* *** parse header and get stream and their id *** */
688     /* get all streams properties,
689      *
690      * TODO : stream bitrates properties(optional)
691      *        and bitrate mutual exclusion(optional) */
692     asf_HeaderParse ( &p_sys->asfh,
693                        p_sys->p_header, p_sys->i_header );
694     msg_Dbg( p_access, "packet count=%"PRId64" packet size=%d",
695              p_sys->asfh.i_data_packets_count,
696              p_sys->asfh.i_min_data_packet_size );
697
698     if( p_sys->asfh.i_min_data_packet_size <= 0 )
699         goto error;
700
701     asf_StreamSelect( &p_sys->asfh,
702                        var_CreateGetInteger( p_access, "mms-maxbitrate" ),
703                        var_CreateGetBool( p_access, "mms-all" ),
704                        var_CreateGetInteger( p_access, "audio" ),
705                        var_CreateGetInteger( p_access, "video" ) );
706     return VLC_SUCCESS;
707
708 error:
709     if( p_sys->fd > 0 )
710     {
711         net_Close( p_sys->fd  );
712         p_sys->fd = -1;
713     }
714     return VLC_EGENERIC;
715 }
716
717 static void GetHeader( access_t *p_access )
718 {
719     access_sys_t *p_sys = p_access->p_sys;
720
721     /* Read the asf header */
722     p_sys->i_header = 0;
723     free( p_sys->p_header  );
724     p_sys->p_header = NULL;
725     for( ;; )
726     {
727         chunk_t ck;
728         if( GetPacket( p_access, &ck ) || ck.i_type != 0x4824 )
729             break;
730
731         if( ck.i_data > 0 )
732         {
733             p_sys->i_header += ck.i_data;
734             p_sys->p_header = xrealloc( p_sys->p_header, p_sys->i_header );
735             memcpy( &p_sys->p_header[p_sys->i_header - ck.i_data],
736                     ck.p_data, ck.i_data );
737         }
738     }
739     msg_Dbg( p_access, "complete header size=%d", p_sys->i_header );
740 }
741
742
743 /*****************************************************************************
744  * Start stream
745  ****************************************************************************/
746 static int Start( access_t *p_access, uint64_t i_pos )
747 {
748     access_sys_t *p_sys = p_access->p_sys;
749     int  i_streams = 0;
750     int  i_streams_selected = 0;
751     int  i;
752     char *psz = NULL;
753
754     msg_Dbg( p_access, "starting stream" );
755
756     for( i = 1; i < 128; i++ )
757     {
758         if( p_sys->asfh.stream[i].i_cat == ASF_STREAM_UNKNOWN )
759             continue;
760         i_streams++;
761         if( p_sys->asfh.stream[i].i_selected )
762             i_streams_selected++;
763     }
764     if( i_streams_selected <= 0 )
765     {
766         msg_Err( p_access, "no stream selected" );
767         return VLC_EGENERIC;
768     }
769
770     if( OpenConnection( p_access ) )
771         return VLC_EGENERIC;
772
773     net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
774                 "Accept: */*\r\n"
775                 "User-Agent: "MMSH_USER_AGENT"\r\n" );
776     if( p_sys->b_broadcast )
777     {
778         net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
779                     "Pragma: no-cache,rate=1.000000,request-context=%d\r\n",
780                     p_sys->i_request_context++ );
781     }
782     else
783     {
784         net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
785                     "Pragma: no-cache,rate=1.000000,stream-time=0,stream-offset=%u:%u,request-context=%d,max-duration=0\r\n",
786                     (uint32_t)((i_pos >> 32)&0xffffffff),
787                     (uint32_t)(i_pos&0xffffffff),
788                     p_sys->i_request_context++ );
789     }
790     net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
791                 "Pragma: xPlayStrm=1\r\n"
792                 "Pragma: xClientGUID={"GUID_FMT"}\r\n"
793                 "Pragma: stream-switch-count=%d\r\n"
794                 "Pragma: stream-switch-entry=",
795                 GUID_PRINT( p_sys->guid ),
796                 i_streams);
797
798     for( i = 1; i < 128; i++ )
799     {
800         if( p_sys->asfh.stream[i].i_cat != ASF_STREAM_UNKNOWN )
801         {
802             int i_select = 2;
803             if( p_sys->asfh.stream[i].i_selected )
804             {
805                 i_select = 0;
806             }
807             net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
808                         "ffff:%d:%d ", i, i_select );
809         }
810     }
811     net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" );
812     net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL,
813                 "Connection: Close\r\n" );
814
815     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd, NULL, "\r\n" ) < 0 )
816     {
817         msg_Err( p_access, "failed to send request" );
818         return VLC_EGENERIC;
819     }
820
821     psz = net_Gets( p_access, p_sys->fd, NULL );
822     if( psz == NULL )
823     {
824         msg_Err( p_access, "cannot read data 0" );
825         return VLC_EGENERIC;
826     }
827
828     if( atoi( &psz[9] ) >= 400 )
829     {
830         msg_Err( p_access, "error: %s", psz );
831         free( psz );
832         return VLC_EGENERIC;
833     }
834     msg_Dbg( p_access, "HTTP reply '%s'", psz );
835     free( psz );
836
837     /* FIXME check HTTP code */
838     for( ;; )
839     {
840         char *psz = net_Gets( p_access, p_sys->fd, NULL );
841         if( psz == NULL )
842         {
843             msg_Err( p_access, "cannot read data 1" );
844             return VLC_EGENERIC;
845         }
846         if( *psz == '\0' )
847         {
848             free( psz );
849             break;
850         }
851         msg_Dbg( p_access, "%s", psz );
852         free( psz );
853     }
854
855     p_sys->i_packet_used   = 0;
856     p_sys->i_packet_length = 0;
857
858     return VLC_SUCCESS;
859 }
860
861 /*****************************************************************************
862  * closing stream
863  *****************************************************************************/
864 static void Stop( access_t *p_access )
865 {
866     access_sys_t *p_sys = p_access->p_sys;
867
868     msg_Dbg( p_access, "closing stream" );
869     if( p_sys->fd > 0 )
870     {
871         net_Close( p_sys->fd );
872         p_sys->fd = -1;
873     }
874 }
875
876 /*****************************************************************************
877  * get packet
878  *****************************************************************************/
879 static int GetPacket( access_t * p_access, chunk_t *p_ck )
880 {
881     access_sys_t *p_sys = p_access->p_sys;
882     int restsize;
883
884     /* chunk_t */
885     memset( p_ck, 0, sizeof( chunk_t ) );
886
887     /* Read the chunk header */
888     /* Some headers are short, like 0x4324. Reading 12 bytes will cause us
889      * to lose synchronization with the stream. Just read to the length
890      * (4 bytes), decode and then read up to 8 additional bytes to get the
891      * entire header.
892      */
893     if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer, 4, true ) < 4 )
894     {
895        msg_Err( p_access, "cannot read data 2" );
896        return VLC_EGENERIC;
897     }
898
899     p_ck->i_type = GetWLE( p_sys->buffer);
900     p_ck->i_size = GetWLE( p_sys->buffer + 2);
901
902     restsize = p_ck->i_size;
903     if( restsize > 8 )
904         restsize = 8;
905
906     if( net_Read( p_access, p_sys->fd, NULL, p_sys->buffer + 4, restsize, true ) < restsize )
907     {
908         msg_Err( p_access, "cannot read data 3" );
909         return VLC_EGENERIC;
910     }
911     p_ck->i_sequence  = GetDWLE( p_sys->buffer + 4);
912     p_ck->i_unknown   = GetWLE( p_sys->buffer + 8);
913
914     /* Set i_size2 to 8 if this header was short, since a real value won't be
915      * present in the buffer. Using 8 avoid reading additional data for the
916      * packet.
917      */
918     if( restsize < 8 )
919         p_ck->i_size2 = 8;
920     else
921         p_ck->i_size2 = GetWLE( p_sys->buffer + 10);
922
923     p_ck->p_data      = p_sys->buffer + 12;
924     p_ck->i_data      = p_ck->i_size2 - 8;
925
926     if( p_ck->i_type == 0x4524 )   // Transfer complete
927     {
928         if( p_ck->i_sequence == 0 )
929         {
930             msg_Warn( p_access, "EOF" );
931             return VLC_EGENERIC;
932         }
933         else
934         {
935             msg_Warn( p_access, "next stream following" );
936             return VLC_EGENERIC;
937         }
938     }
939     else if( p_ck->i_type == 0x4324 )
940     {
941         /* 0x4324 is CHUNK_TYPE_RESET: a new stream will follow with a sequence of 0 */
942         msg_Warn( p_access, "next stream following (reset) seq=%d", p_ck->i_sequence  );
943         return VLC_EGENERIC;
944     }
945     else if( (p_ck->i_type != 0x4824) && (p_ck->i_type != 0x4424) )
946     {
947         msg_Err( p_access, "invalid chunk FATAL (0x%x)", p_ck->i_type );
948         return VLC_EGENERIC;
949     }
950
951     if( (p_ck->i_data > 0) &&
952         (net_Read( p_access, p_sys->fd, NULL, &p_sys->buffer[12],
953                    p_ck->i_data, true ) < p_ck->i_data) )
954     {
955         msg_Err( p_access, "cannot read data 4" );
956         return VLC_EGENERIC;
957     }
958
959 #if 0
960     if( (p_sys->i_packet_sequence != 0) &&
961         (p_ck->i_sequence != p_sys->i_packet_sequence) )
962     {
963         msg_Warn( p_access, "packet lost ? (%d != %d)", p_ck->i_sequence, p_sys->i_packet_sequence );
964     }
965 #endif
966
967     p_sys->i_packet_sequence = p_ck->i_sequence + 1;
968     p_sys->i_packet_used   = 0;
969     p_sys->i_packet_length = p_ck->i_data;
970     p_sys->p_packet        = p_ck->p_data;
971
972     return VLC_SUCCESS;
973 }