4 * Copyright (C) 2001 Bertrand Baudet <bertrand_baudet@yahoo.com>
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
41 #include "libmpdemux/demuxer.h"
45 extern const mime_struct_t mime_type_table
[];
46 extern int stream_cache_size
;
47 extern int network_bandwidth
;
56 * \brief first read any data from sc->buffer then from fd
57 * \param fd file descriptor to read data from
58 * \param buffer buffer to read into
59 * \param len how many bytes to read
60 * \param sc streaming control containing buffer to read from first
61 * \return len unless there is a read error or eof
63 static unsigned my_read(int fd
, char *buffer
, int len
, streaming_ctrl_t
*sc
) {
65 unsigned cp_len
= sc
->buffer_size
- sc
->buffer_pos
;
68 memcpy(buffer
, &sc
->buffer
[sc
->buffer_pos
], cp_len
);
69 sc
->buffer_pos
+= cp_len
;
72 int ret
= recv(fd
, &buffer
[pos
], len
- pos
, 0);
81 * \brief read and process (i.e. discard *g*) a block of ultravox metadata
82 * \param fd file descriptor to read from
83 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd
84 * \return number of real data before next metadata block starts or 0 on error
86 static unsigned uvox_meta_read(int fd
, streaming_ctrl_t
*sc
) {
88 unsigned char info
[6] = {0, 0, 0, 0, 0, 0};
91 info_read
= my_read(fd
, info
, 1, sc
);
93 info_read
= my_read(fd
, info
, 6, sc
);
95 info_read
+= my_read(fd
, &info
[1], 5, sc
);
96 if (info_read
!= 6) // read error or eof
98 // sync byte and reserved flags
99 if (info
[0] != 0x5a || (info
[1] & 0xfc) != 0x00) {
100 mp_msg(MSGT_DEMUXER
, MSGL_ERR
, "Invalid or unknown uvox metadata\n");
104 mp_msg(MSGT_DEMUXER
, MSGL_WARN
, "Encrypted ultravox data\n");
105 metaint
= info
[4] << 8 | info
[5];
106 if ((info
[3] & 0xf) < 0x07) { // discard any metadata nonsense
107 char *metabuf
= malloc(metaint
);
108 my_read(fd
, metabuf
, metaint
, sc
);
111 } while ((info
[3] & 0xf) < 0x07);
116 * \brief read one scast meta data entry and print it
117 * \param fd file descriptor to read from
118 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd
120 static void scast_meta_read(int fd
, streaming_ctrl_t
*sc
) {
121 unsigned char tmp
= 0;
123 my_read(fd
, &tmp
, 1, sc
);
127 uint8_t *info
= malloc(metalen
+ 1);
128 unsigned nlen
= my_read(fd
, info
, metalen
, sc
);
129 // avoid breaking the user's terminal too much
130 if (nlen
> 256) nlen
= 256;
131 for (i
= 0; i
< nlen
; i
++)
132 if (info
[i
] && info
[i
] < 32) info
[i
] = '?';
134 mp_msg(MSGT_DEMUXER
, MSGL_INFO
, "\nICY Info: %s\n", info
);
140 * \brief read data from scast/ultravox stream without any metadata
141 * \param fd file descriptor to read from
142 * \param buffer buffer to read data into
143 * \param size number of bytes to read
144 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd
146 static int scast_streaming_read(int fd
, char *buffer
, int size
,
147 streaming_ctrl_t
*sc
) {
148 scast_data_t
*sd
= (scast_data_t
*)sc
->data
;
152 // first read remaining data up to next metadata
153 block
= sd
->metaint
- sd
->metapos
;
156 ret
= my_read(fd
, buffer
, block
, sc
);
159 if (ret
!= block
) // read problems or eof
162 while (done
< size
) { // now comes the metadata
165 sd
->metaint
= uvox_meta_read(fd
, sc
);
170 scast_meta_read(fd
, sc
); // read and display metadata
173 if (block
> sd
->metaint
)
175 ret
= my_read(fd
, &buffer
[done
], block
, sc
);
178 if (ret
!= block
) // read problems or eof
184 static int scast_streaming_start(stream_t
*stream
) {
186 scast_data_t
*scast_data
;
187 HTTP_header_t
*http_hdr
= stream
->streaming_ctrl
->data
;
188 int is_ultravox
= strcasecmp(stream
->streaming_ctrl
->url
->protocol
, "unsv") == 0;
189 if (!stream
|| stream
->fd
< 0 || !http_hdr
)
194 metaint
= atoi(http_get_field(http_hdr
, "Icy-MetaInt"));
198 stream
->streaming_ctrl
->buffer
= malloc(http_hdr
->body_size
);
199 stream
->streaming_ctrl
->buffer_size
= http_hdr
->body_size
;
200 stream
->streaming_ctrl
->buffer_pos
= 0;
201 memcpy(stream
->streaming_ctrl
->buffer
, http_hdr
->body
, http_hdr
->body_size
);
202 scast_data
= malloc(sizeof(scast_data_t
));
203 scast_data
->metaint
= metaint
;
204 scast_data
->metapos
= 0;
205 scast_data
->is_ultravox
= is_ultravox
;
207 stream
->streaming_ctrl
->data
= scast_data
;
208 stream
->streaming_ctrl
->streaming_read
= scast_streaming_read
;
209 stream
->streaming_ctrl
->streaming_seek
= NULL
;
210 stream
->streaming_ctrl
->prebuffer_size
= 64 * 1024; // 64 KBytes
211 stream
->streaming_ctrl
->buffering
= 1;
212 stream
->streaming_ctrl
->status
= streaming_playing_e
;
216 static int nop_streaming_start( stream_t
*stream
) {
217 HTTP_header_t
*http_hdr
= NULL
;
221 if( stream
==NULL
) return -1;
225 fd
= http_send_request( stream
->streaming_ctrl
->url
, 0 );
226 if( fd
<0 ) return -1;
227 http_hdr
= http_read_response( fd
);
228 if( http_hdr
==NULL
) return -1;
230 switch( http_hdr
->status_code
) {
232 mp_msg(MSGT_NETWORK
,MSGL_V
,"Content-Type: [%s]\n", http_get_field(http_hdr
, "Content-Type") );
233 mp_msg(MSGT_NETWORK
,MSGL_V
,"Content-Length: [%s]\n", http_get_field(http_hdr
, "Content-Length") );
234 if( http_hdr
->body_size
>0 ) {
235 if( streaming_bufferize( stream
->streaming_ctrl
, http_hdr
->body
, http_hdr
->body_size
)<0 ) {
236 http_free( http_hdr
);
242 case 301: // Permanently
243 case 302: // Temporarily
244 case 303: // See Other
246 next_url
= http_get_field( http_hdr
, "Location" );
248 if (next_url
!= NULL
)
249 rd_url
=url_new(next_url
);
251 if (next_url
!= NULL
&& rd_url
!= NULL
) {
252 mp_msg(MSGT_NETWORK
,MSGL_STATUS
,"Redirected: Using this url instead %s\n",next_url
);
253 stream
->streaming_ctrl
->url
=check4proxies(rd_url
);
254 ret
=nop_streaming_start(stream
); //recursively get streaming started
256 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Redirection failed\n");
262 case 401: //Authorization required
263 case 403: //Forbidden
264 case 404: //Not found
265 case 500: //Server Error
267 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Server returned code %d: %s\n", http_hdr
->status_code
, http_hdr
->reason_phrase
);
275 http_hdr
= (HTTP_header_t
*)stream
->streaming_ctrl
->data
;
276 if( http_hdr
->body_size
>0 ) {
277 if( streaming_bufferize( stream
->streaming_ctrl
, http_hdr
->body
, http_hdr
->body_size
)<0 ) {
278 http_free( http_hdr
);
279 stream
->streaming_ctrl
->data
= NULL
;
286 http_free( http_hdr
);
287 stream
->streaming_ctrl
->data
= NULL
;
290 stream
->streaming_ctrl
->streaming_read
= nop_streaming_read
;
291 stream
->streaming_ctrl
->streaming_seek
= nop_streaming_seek
;
292 stream
->streaming_ctrl
->prebuffer_size
= 64*1024; // 64 KBytes
293 stream
->streaming_ctrl
->buffering
= 1;
294 stream
->streaming_ctrl
->status
= streaming_playing_e
;
299 http_new_header(void) {
300 HTTP_header_t
*http_hdr
;
302 http_hdr
= malloc(sizeof(HTTP_header_t
));
303 if( http_hdr
==NULL
) return NULL
;
304 memset( http_hdr
, 0, sizeof(HTTP_header_t
) );
310 http_free( HTTP_header_t
*http_hdr
) {
311 HTTP_field_t
*field
, *field2free
;
312 if( http_hdr
==NULL
) return;
313 if( http_hdr
->protocol
!=NULL
) free( http_hdr
->protocol
);
314 if( http_hdr
->uri
!=NULL
) free( http_hdr
->uri
);
315 if( http_hdr
->reason_phrase
!=NULL
) free( http_hdr
->reason_phrase
);
316 if( http_hdr
->field_search
!=NULL
) free( http_hdr
->field_search
);
317 if( http_hdr
->method
!=NULL
) free( http_hdr
->method
);
318 if( http_hdr
->buffer
!=NULL
) free( http_hdr
->buffer
);
319 field
= http_hdr
->first_field
;
320 while( field
!=NULL
) {
322 if (field
->field_name
)
323 free(field
->field_name
);
332 http_response_append( HTTP_header_t
*http_hdr
, char *response
, int length
) {
333 if( http_hdr
==NULL
|| response
==NULL
|| length
<0 ) return -1;
335 if( (unsigned)length
> SIZE_MAX
- http_hdr
->buffer_size
- 1) {
336 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Bad size in memory (re)allocation\n");
339 http_hdr
->buffer
= realloc( http_hdr
->buffer
, http_hdr
->buffer_size
+length
+1 );
340 if( http_hdr
->buffer
==NULL
) {
341 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory (re)allocation failed\n");
344 memcpy( http_hdr
->buffer
+http_hdr
->buffer_size
, response
, length
);
345 http_hdr
->buffer_size
+= length
;
346 http_hdr
->buffer
[http_hdr
->buffer_size
]=0; // close the string!
347 return http_hdr
->buffer_size
;
351 http_is_header_entire( HTTP_header_t
*http_hdr
) {
352 if( http_hdr
==NULL
) return -1;
353 if( http_hdr
->buffer
==NULL
) return 0; // empty
355 if( strstr(http_hdr
->buffer
, "\r\n\r\n")==NULL
&&
356 strstr(http_hdr
->buffer
, "\n\n")==NULL
) return 0;
361 http_response_parse( HTTP_header_t
*http_hdr
) {
364 int pos_hdr_sep
, hdr_sep_len
;
366 if( http_hdr
==NULL
) return -1;
367 if( http_hdr
->is_parsed
) return 0;
370 hdr_ptr
= strstr( http_hdr
->buffer
, " " );
371 if( hdr_ptr
==NULL
) {
372 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Malformed answer. No space separator found.\n");
375 len
= hdr_ptr
-http_hdr
->buffer
;
376 http_hdr
->protocol
= malloc(len
+1);
377 if( http_hdr
->protocol
==NULL
) {
378 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
381 strncpy( http_hdr
->protocol
, http_hdr
->buffer
, len
);
382 http_hdr
->protocol
[len
]='\0';
383 if( !strncasecmp( http_hdr
->protocol
, "HTTP", 4) ) {
384 if( sscanf( http_hdr
->protocol
+5,"1.%d", &(http_hdr
->http_minor_version
) )!=1 ) {
385 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Malformed answer. Unable to get HTTP minor version.\n");
390 // Get the status code
391 if( sscanf( ++hdr_ptr
, "%d", &(http_hdr
->status_code
) )!=1 ) {
392 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Malformed answer. Unable to get status code.\n");
397 // Get the reason phrase
398 ptr
= strstr( hdr_ptr
, "\n" );
399 if( hdr_ptr
==NULL
) {
400 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Malformed answer. Unable to get the reason phrase.\n");
404 http_hdr
->reason_phrase
= malloc(len
+1);
405 if( http_hdr
->reason_phrase
==NULL
) {
406 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
409 strncpy( http_hdr
->reason_phrase
, hdr_ptr
, len
);
410 if( http_hdr
->reason_phrase
[len
-1]=='\r' ) {
413 http_hdr
->reason_phrase
[len
]='\0';
415 // Set the position of the header separator: \r\n\r\n
417 ptr
= strstr( http_hdr
->buffer
, "\r\n\r\n" );
419 ptr
= strstr( http_hdr
->buffer
, "\n\n" );
421 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Header may be incomplete. No CRLF CRLF found.\n");
426 pos_hdr_sep
= ptr
-http_hdr
->buffer
;
428 // Point to the first line after the method line.
429 hdr_ptr
= strstr( http_hdr
->buffer
, "\n" )+1;
432 while( *ptr
!='\r' && *ptr
!='\n' ) ptr
++;
435 field
= realloc(field
, len
+1);
437 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Memory allocation failed\n");
440 strncpy( field
, hdr_ptr
, len
);
442 http_set_field( http_hdr
, field
);
443 hdr_ptr
= ptr
+((*ptr
=='\r')?2:1);
444 } while( hdr_ptr
<(http_hdr
->buffer
+pos_hdr_sep
) );
446 if( field
!=NULL
) free( field
);
448 if( pos_hdr_sep
+hdr_sep_len
<http_hdr
->buffer_size
) {
449 // Response has data!
450 http_hdr
->body
= http_hdr
->buffer
+pos_hdr_sep
+hdr_sep_len
;
451 http_hdr
->body_size
= http_hdr
->buffer_size
-(pos_hdr_sep
+hdr_sep_len
);
454 http_hdr
->is_parsed
= 1;
459 http_build_request( HTTP_header_t
*http_hdr
) {
460 char *ptr
, *uri
=NULL
;
463 if( http_hdr
==NULL
) return NULL
;
465 if( http_hdr
->method
==NULL
) http_set_method( http_hdr
, "GET");
466 if( http_hdr
->uri
==NULL
) http_set_uri( http_hdr
, "/");
468 uri
= malloc(strlen(http_hdr
->uri
) + 1);
470 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Memory allocation failed\n");
473 strcpy(uri
,http_hdr
->uri
);
476 //**** Compute the request length
477 // Add the Method line
478 len
= strlen(http_hdr
->method
)+strlen(uri
)+12;
480 field
= http_hdr
->first_field
;
481 while( field
!=NULL
) {
482 len
+= strlen(field
->field_name
)+2;
488 if( http_hdr
->body
!=NULL
) {
489 len
+= http_hdr
->body_size
;
491 // Free the buffer if it was previously used
492 if( http_hdr
->buffer
!=NULL
) {
493 free( http_hdr
->buffer
);
494 http_hdr
->buffer
= NULL
;
496 http_hdr
->buffer
= malloc(len
+1);
497 if( http_hdr
->buffer
==NULL
) {
498 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Memory allocation failed\n");
501 http_hdr
->buffer_size
= len
;
503 //*** Building the request
504 ptr
= http_hdr
->buffer
;
505 // Add the method line
506 ptr
+= sprintf( ptr
, "%s %s HTTP/1.%d\r\n", http_hdr
->method
, uri
, http_hdr
->http_minor_version
);
507 field
= http_hdr
->first_field
;
509 while( field
!=NULL
) {
510 ptr
+= sprintf( ptr
, "%s\r\n", field
->field_name
);
513 ptr
+= sprintf( ptr
, "\r\n" );
515 if( http_hdr
->body
!=NULL
) {
516 memcpy( ptr
, http_hdr
->body
, http_hdr
->body_size
);
519 if( uri
) free( uri
);
520 return http_hdr
->buffer
;
524 http_get_field( HTTP_header_t
*http_hdr
, const char *field_name
) {
525 if( http_hdr
==NULL
|| field_name
==NULL
) return NULL
;
526 http_hdr
->field_search_pos
= http_hdr
->first_field
;
527 http_hdr
->field_search
= realloc( http_hdr
->field_search
, strlen(field_name
)+1 );
528 if( http_hdr
->field_search
==NULL
) {
529 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
532 strcpy( http_hdr
->field_search
, field_name
);
533 return http_get_next_field( http_hdr
);
537 http_get_next_field( HTTP_header_t
*http_hdr
) {
540 if( http_hdr
==NULL
) return NULL
;
542 field
= http_hdr
->field_search_pos
;
543 while( field
!=NULL
) {
544 ptr
= strstr( field
->field_name
, ":" );
545 if( ptr
==NULL
) return NULL
;
546 if( !strncasecmp( field
->field_name
, http_hdr
->field_search
, ptr
-(field
->field_name
) ) ) {
547 ptr
++; // Skip the column
548 while( ptr
[0]==' ' ) ptr
++; // Skip the spaces if there is some
549 http_hdr
->field_search_pos
= field
->next
;
550 return ptr
; // return the value without the field name
558 http_set_field( HTTP_header_t
*http_hdr
, const char *field_name
) {
559 HTTP_field_t
*new_field
;
560 if( http_hdr
==NULL
|| field_name
==NULL
) return;
562 new_field
= malloc(sizeof(HTTP_field_t
));
563 if( new_field
==NULL
) {
564 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
567 new_field
->next
= NULL
;
568 new_field
->field_name
= malloc(strlen(field_name
)+1);
569 if( new_field
->field_name
==NULL
) {
570 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
574 strcpy( new_field
->field_name
, field_name
);
576 if( http_hdr
->last_field
==NULL
) {
577 http_hdr
->first_field
= new_field
;
579 http_hdr
->last_field
->next
= new_field
;
581 http_hdr
->last_field
= new_field
;
582 http_hdr
->field_nb
++;
586 http_set_method( HTTP_header_t
*http_hdr
, const char *method
) {
587 if( http_hdr
==NULL
|| method
==NULL
) return;
589 http_hdr
->method
= malloc(strlen(method
)+1);
590 if( http_hdr
->method
==NULL
) {
591 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
594 strcpy( http_hdr
->method
, method
);
598 http_set_uri( HTTP_header_t
*http_hdr
, const char *uri
) {
599 if( http_hdr
==NULL
|| uri
==NULL
) return;
601 http_hdr
->uri
= malloc(strlen(uri
)+1);
602 if( http_hdr
->uri
==NULL
) {
603 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
606 strcpy( http_hdr
->uri
, uri
);
610 http_add_basic_authentication( HTTP_header_t
*http_hdr
, const char *username
, const char *password
) {
611 char *auth
= NULL
, *usr_pass
= NULL
, *b64_usr_pass
= NULL
;
612 int encoded_len
, pass_len
=0, out_len
;
614 if( http_hdr
==NULL
|| username
==NULL
) return -1;
616 if( password
!=NULL
) {
617 pass_len
= strlen(password
);
620 usr_pass
= malloc(strlen(username
)+pass_len
+2);
621 if( usr_pass
==NULL
) {
622 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
626 sprintf( usr_pass
, "%s:%s", username
, (password
==NULL
)?"":password
);
628 // Base 64 encode with at least 33% more data than the original size
629 encoded_len
= strlen(usr_pass
)*2;
630 b64_usr_pass
= malloc(encoded_len
);
631 if( b64_usr_pass
==NULL
) {
632 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
636 out_len
= base64_encode( usr_pass
, strlen(usr_pass
), b64_usr_pass
, encoded_len
);
638 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Base64 out overflow\n");
642 b64_usr_pass
[out_len
]='\0';
644 auth
= malloc(encoded_len
+22);
646 mp_msg(MSGT_NETWORK
,MSGL_FATAL
,"Memory allocation failed\n");
650 sprintf( auth
, "Authorization: Basic %s", b64_usr_pass
);
651 http_set_field( http_hdr
, auth
);
656 free( b64_usr_pass
);
663 http_debug_hdr( HTTP_header_t
*http_hdr
) {
666 if( http_hdr
==NULL
) return;
668 mp_msg(MSGT_NETWORK
,MSGL_V
,"--- HTTP DEBUG HEADER --- START ---\n");
669 mp_msg(MSGT_NETWORK
,MSGL_V
,"protocol: [%s]\n", http_hdr
->protocol
);
670 mp_msg(MSGT_NETWORK
,MSGL_V
,"http minor version: [%d]\n", http_hdr
->http_minor_version
);
671 mp_msg(MSGT_NETWORK
,MSGL_V
,"uri: [%s]\n", http_hdr
->uri
);
672 mp_msg(MSGT_NETWORK
,MSGL_V
,"method: [%s]\n", http_hdr
->method
);
673 mp_msg(MSGT_NETWORK
,MSGL_V
,"status code: [%d]\n", http_hdr
->status_code
);
674 mp_msg(MSGT_NETWORK
,MSGL_V
,"reason phrase: [%s]\n", http_hdr
->reason_phrase
);
675 mp_msg(MSGT_NETWORK
,MSGL_V
,"body size: [%d]\n", http_hdr
->body_size
);
677 mp_msg(MSGT_NETWORK
,MSGL_V
,"Fields:\n");
678 field
= http_hdr
->first_field
;
679 while( field
!=NULL
) {
680 mp_msg(MSGT_NETWORK
,MSGL_V
," %d - %s\n", i
++, field
->field_name
);
683 mp_msg(MSGT_NETWORK
,MSGL_V
,"--- HTTP DEBUG HEADER --- END ---\n");
687 base64_encode(const void *enc
, int encLen
, char *out
, int outMax
) {
688 static const char b64
[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
690 unsigned char *encBuf
;
695 encBuf
= (unsigned char*)enc
;
710 } else if( shift
>0 ) {
711 // Pad last bits to 6 bits - will end next loop
715 // As per RFC 2045, section 6.8,
716 // pad output as necessary: 0 to 2 '=' chars.
725 // Encode 6 bit segments
727 if (outLen
>= outMax
)
730 *out
= b64
[ (bits
>> shift
) & 0x3F ];
737 static void print_icy_metadata(HTTP_header_t
*http_hdr
) {
738 const char *field_data
;
739 // note: I skip icy-notice1 and 2, as they contain html <BR>
740 // and are IMHO useless info ::atmos
741 if( (field_data
= http_get_field(http_hdr
, "icy-name")) != NULL
)
742 mp_msg(MSGT_NETWORK
,MSGL_INFO
,"Name : %s\n", field_data
);
743 if( (field_data
= http_get_field(http_hdr
, "icy-genre")) != NULL
)
744 mp_msg(MSGT_NETWORK
,MSGL_INFO
,"Genre : %s\n", field_data
);
745 if( (field_data
= http_get_field(http_hdr
, "icy-url")) != NULL
)
746 mp_msg(MSGT_NETWORK
,MSGL_INFO
,"Website: %s\n", field_data
);
747 // XXX: does this really mean public server? ::atmos
748 if( (field_data
= http_get_field(http_hdr
, "icy-pub")) != NULL
)
749 mp_msg(MSGT_NETWORK
,MSGL_INFO
,"Public : %s\n", atoi(field_data
)?"yes":"no");
750 if( (field_data
= http_get_field(http_hdr
, "icy-br")) != NULL
)
751 mp_msg(MSGT_NETWORK
,MSGL_INFO
,"Bitrate: %skbit/s\n", field_data
);
754 //! If this function succeeds you must closesocket stream->fd
755 static int http_streaming_start(stream_t
*stream
, int* file_format
) {
756 HTTP_header_t
*http_hdr
= NULL
;
759 int res
= STREAM_UNSUPPORTED
;
764 const char *content_length
;
766 URL_t
*url
= stream
->streaming_ctrl
->url
;
771 if (fd
> 0) closesocket(fd
);
772 fd
= http_send_request( url
, 0 );
778 http_hdr
= http_read_response( fd
);
779 if( http_hdr
==NULL
) {
783 if( mp_msg_test(MSGT_NETWORK
,MSGL_V
) ) {
784 http_debug_hdr( http_hdr
);
787 // Check if we can make partial content requests and thus seek in http-streams
788 if( http_hdr
!=NULL
&& http_hdr
->status_code
==200 ) {
789 const char *accept_ranges
= http_get_field(http_hdr
,"Accept-Ranges");
790 const char *server
= http_get_field(http_hdr
, "Server");
792 seekable
= strncmp(accept_ranges
,"bytes",5)==0;
793 else if (server
&& strcmp(server
, "gvs 1.0") == 0)
794 seekable
= 1; // HACK for youtube incorrectly claiming not to support seeking
797 print_icy_metadata(http_hdr
);
799 // Check if the response is an ICY status_code reason_phrase
800 if( !strcasecmp(http_hdr
->protocol
, "ICY") ||
801 http_get_field(http_hdr
, "Icy-MetaInt") ) {
802 switch( http_hdr
->status_code
) {
805 // If content-type == video/nsv we most likely have a winamp video stream
806 // otherwise it should be mp3. if there are more types consider adding mime type
807 // handling like later
808 if ( (field_data
= http_get_field(http_hdr
, "content-type")) != NULL
&& (!strcmp(field_data
, "video/nsv") || !strcmp(field_data
, "misc/ultravox")))
809 *file_format
= DEMUXER_TYPE_NSV
;
810 else if ( (field_data
= http_get_field(http_hdr
, "content-type")) != NULL
&& (!strcmp(field_data
, "audio/aacp") || !strcmp(field_data
, "audio/aac")))
811 *file_format
= DEMUXER_TYPE_AAC
;
813 *file_format
= DEMUXER_TYPE_AUDIO
;
817 case 400: // Server Full
818 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Error: ICY-Server is full, skipping!\n");
820 case 401: // Service Unavailable
821 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Error: ICY-Server return service unavailable, skipping!\n");
823 case 403: // Service Forbidden
824 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Error: ICY-Server return 'Service Forbidden'\n");
826 case 404: // Resource Not Found
827 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Error: ICY-Server couldn't find requested stream, skipping!\n");
830 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Error: unhandled ICY-Errorcode, contact MPlayer developers!\n");
835 // Assume standard http if not ICY
836 switch( http_hdr
->status_code
) {
838 content_length
= http_get_field(http_hdr
, "Content-Length");
839 if (content_length
) {
840 mp_msg(MSGT_NETWORK
,MSGL_V
,"Content-Length: [%s]\n", content_length
);
841 stream
->end_pos
= atoll(content_length
);
843 // Look if we can use the Content-Type
844 content_type
= http_get_field( http_hdr
, "Content-Type" );
845 if( content_type
!=NULL
) {
846 mp_msg(MSGT_NETWORK
,MSGL_V
,"Content-Type: [%s]\n", content_type
);
847 // Check in the mime type table for a demuxer type
849 while(mime_type_table
[i
].mime_type
!= NULL
) {
850 if( !strcasecmp( content_type
, mime_type_table
[i
].mime_type
) ) {
851 *file_format
= mime_type_table
[i
].demuxer_type
;
858 // Not found in the mime type table, don't fail,
859 // we should try raw HTTP
863 case 301: // Permanently
864 case 302: // Temporarily
865 case 303: // See Other
866 // TODO: RFC 2616, recommand to detect infinite redirection loops
867 next_url
= http_get_field( http_hdr
, "Location" );
868 if( next_url
!=NULL
) {
869 int is_ultravox
= strcasecmp(stream
->streaming_ctrl
->url
->protocol
, "unsv") == 0;
870 stream
->streaming_ctrl
->url
= url_redirect( &url
, next_url
);
871 if (!strcasecmp(url
->protocol
, "mms")) {
872 res
= STREAM_REDIRECTED
;
875 if (strcasecmp(url
->protocol
, "http")) {
876 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Unsupported http %d redirect to %s protocol\n", http_hdr
->status_code
, url
->protocol
);
881 url
->protocol
= strdup("unsv");
886 case 401: // Authentication required
887 if( http_authenticate(http_hdr
, url
, &auth_retry
)<0 )
892 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"Server returned %d: %s\n", http_hdr
->status_code
, http_hdr
->reason_phrase
);
898 if (fd
> 0) closesocket( fd
);
900 http_free( http_hdr
);
903 stream
->streaming_ctrl
->data
= (void*)http_hdr
;
908 static int fixup_open(stream_t
*stream
,int seekable
) {
909 HTTP_header_t
*http_hdr
= stream
->streaming_ctrl
->data
;
910 int is_icy
= http_hdr
&& http_get_field(http_hdr
, "Icy-MetaInt");
911 int is_ultravox
= strcasecmp(stream
->streaming_ctrl
->url
->protocol
, "unsv") == 0;
913 stream
->type
= STREAMTYPE_STREAM
;
914 if(!is_icy
&& !is_ultravox
&& seekable
)
916 stream
->flags
|= MP_STREAM_SEEK
;
917 stream
->seek
= http_seek
;
919 stream
->streaming_ctrl
->bandwidth
= network_bandwidth
;
920 if ((!is_icy
&& !is_ultravox
) || scast_streaming_start(stream
))
921 if(nop_streaming_start( stream
)) {
922 mp_msg(MSGT_NETWORK
,MSGL_ERR
,"nop_streaming_start failed\n");
924 closesocket(stream
->fd
);
926 streaming_ctrl_free(stream
->streaming_ctrl
);
927 stream
->streaming_ctrl
= NULL
;
928 return STREAM_UNSUPPORTED
;
931 fixup_network_stream_cache(stream
);
935 static int open_s1(stream_t
*stream
,int mode
, void* opts
, int* file_format
) {
939 stream
->streaming_ctrl
= streaming_ctrl_new();
940 if( stream
->streaming_ctrl
==NULL
) {
943 stream
->streaming_ctrl
->bandwidth
= network_bandwidth
;
944 url
= url_new(stream
->url
);
945 stream
->streaming_ctrl
->url
= check4proxies(url
);
948 mp_msg(MSGT_OPEN
, MSGL_V
, "STREAM_HTTP(1), URL: %s\n", stream
->url
);
949 seekable
= http_streaming_start(stream
, file_format
);
950 if((seekable
< 0) || (*file_format
== DEMUXER_TYPE_ASF
)) {
952 closesocket(stream
->fd
);
954 if (seekable
== STREAM_REDIRECTED
)
956 streaming_ctrl_free(stream
->streaming_ctrl
);
957 stream
->streaming_ctrl
= NULL
;
958 return STREAM_UNSUPPORTED
;
961 return fixup_open(stream
, seekable
);
964 static int open_s2(stream_t
*stream
,int mode
, void* opts
, int* file_format
) {
968 stream
->streaming_ctrl
= streaming_ctrl_new();
969 if( stream
->streaming_ctrl
==NULL
) {
972 stream
->streaming_ctrl
->bandwidth
= network_bandwidth
;
973 url
= url_new(stream
->url
);
974 stream
->streaming_ctrl
->url
= check4proxies(url
);
977 mp_msg(MSGT_OPEN
, MSGL_V
, "STREAM_HTTP(2), URL: %s\n", stream
->url
);
978 seekable
= http_streaming_start(stream
, file_format
);
981 closesocket(stream
->fd
);
983 streaming_ctrl_free(stream
->streaming_ctrl
);
984 stream
->streaming_ctrl
= NULL
;
985 return STREAM_UNSUPPORTED
;
988 return fixup_open(stream
, seekable
);
992 const stream_info_t stream_info_http1
= {
995 "Bertrand, Albeau, Reimar Doeffinger, Arpi?",
998 {"http", "http_proxy", "unsv", "icyx", "noicyx", NULL
},
1000 0 // Urls are an option string
1003 const stream_info_t stream_info_http2
= {
1006 "Bertrand, Albeu, Arpi? who?",
1007 "plain http, also used as fallback for many other protocols",
1009 {"http", "http_proxy", "pnm", "mms", "mmsu", "mmst", "rtsp", NULL
}, //all the others as fallback
1011 0 // Urls are an option string