Mercurial > mplayer.hg
annotate libmpdemux/http.c @ 16459:2866304d5f4b
echores cleanup, introduce _res_comment variable to easily output additional
information.
author | reimar |
---|---|
date | Mon, 12 Sep 2005 10:05:06 +0000 |
parents | be6bbd50ec20 |
children | 3e63ab4120b2 |
rev | line source |
---|---|
902 | 1 /* |
2 * HTTP Helper | |
3 * by Bertrand Baudet <bertrand_baudet@yahoo.com> | |
4 * (C) 2001, MPlayer team. | |
5 */ | |
6 | |
15614
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
7 #include "config.h" |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
8 |
870 | 9 #include <stdio.h> |
10 #include <stdlib.h> | |
11 #include <string.h> | |
15585 | 12 #include <unistd.h> |
870 | 13 |
15614
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
14 #ifndef HAVE_WINSOCK2 |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
15 #define closesocket close |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
16 #else |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
17 #include <winsock2.h> |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
18 #include <ws2tcpip.h> |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
19 #endif |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
20 |
870 | 21 #include "http.h" |
4816
f1dea39a50bb
Fixed the http response parser when the http header only has the HTTP
bertrand
parents:
4311
diff
changeset
|
22 #include "url.h" |
5915 | 23 #include "mp_msg.h" |
870 | 24 |
15585 | 25 #include "stream.h" |
26 #include "demuxer.h" | |
27 #include "network.h" | |
28 #include "help_mp.h" | |
29 | |
30 | |
31 extern mime_struct_t mime_type_table[]; | |
32 extern int stream_cache_size; | |
33 extern int network_bandwidth; | |
34 | |
35 extern int http_seek(stream_t *stream, off_t pos); | |
36 | |
16013 | 37 typedef struct { |
38 unsigned metaint; | |
39 unsigned metapos; | |
40 int is_ultravox; | |
41 } scast_data_t; | |
42 | |
43 /** | |
44 * \brief first read any data from sc->buffer then from fd | |
45 * \param fd file descriptor to read data from | |
46 * \param buffer buffer to read into | |
47 * \param len how many bytes to read | |
48 * \param sc streaming control containing buffer to read from first | |
49 * \return len unless there is a read error or eof | |
50 */ | |
51 static unsigned my_read(int fd, char *buffer, int len, streaming_ctrl_t *sc) { | |
52 unsigned pos = 0; | |
53 unsigned cp_len = sc->buffer_size - sc->buffer_pos; | |
54 if (cp_len > len) | |
55 cp_len = len; | |
56 memcpy(buffer, &sc->buffer[sc->buffer_pos], cp_len); | |
57 sc->buffer_pos += cp_len; | |
58 pos += cp_len; | |
59 while (pos < len) { | |
16070 | 60 int ret = recv(fd, &buffer[pos], len - pos, 0); |
16013 | 61 if (ret <= 0) |
62 break; | |
63 pos += ret; | |
64 } | |
65 return pos; | |
66 } | |
67 | |
16032 | 68 /** |
69 * \brief read and process (i.e. discard *g*) a block of ultravox metadata | |
70 * \param fd file descriptor to read from | |
71 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd | |
72 * \return number of real data before next metadata block starts or 0 on error | |
73 */ | |
16013 | 74 static unsigned uvox_meta_read(int fd, streaming_ctrl_t *sc) { |
75 unsigned metaint; | |
16070 | 76 unsigned char info[6] = {0, 0, 0, 0, 0, 0}; |
77 int info_read; | |
16013 | 78 do { |
16070 | 79 info_read = my_read(fd, info, 1, sc); |
16013 | 80 if (info[0] == 0x00) |
16070 | 81 info_read = my_read(fd, info, 6, sc); |
16013 | 82 else |
16070 | 83 info_read += my_read(fd, &info[1], 5, sc); |
84 if (info_read != 6) // read error or eof | |
85 return 0; | |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
86 // sync byte and reserved flags |
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
87 if (info[0] != 0x5a || (info[1] & 0xfc) != 0x00) { |
16013 | 88 mp_msg(MSGT_DEMUXER, MSGL_ERR, "Invalid or unknown uvox metadata\n"); |
89 return 0; | |
90 } | |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
91 if (info[1] & 0x01) |
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
92 mp_msg(MSGT_DEMUXER, MSGL_WARN, "Encrypted ultravox data\n"); |
16013 | 93 metaint = info[4] << 8 | info[5]; |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
94 if ((info[3] & 0xf) < 0x07) { // discard any metadata nonsense |
16013 | 95 char *metabuf = malloc(metaint); |
96 my_read(fd, metabuf, metaint, sc); | |
97 free(metabuf); | |
98 } | |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
99 } while ((info[3] & 0xf) < 0x07); |
16013 | 100 return metaint; |
101 } | |
102 | |
103 /** | |
104 * \brief read one scast meta data entry and print it | |
16032 | 105 * \param fd file descriptor to read from |
106 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd | |
16013 | 107 */ |
108 static void scast_meta_read(int fd, streaming_ctrl_t *sc) { | |
109 unsigned char tmp = 0; | |
110 unsigned metalen; | |
111 my_read(fd, &tmp, 1, sc); | |
112 metalen = tmp * 16; | |
113 if (metalen > 0) { | |
114 char *info = (char *)malloc(metalen + 1); | |
115 unsigned nlen = my_read(fd, info, metalen, sc); | |
116 info[nlen] = 0; | |
117 mp_msg(MSGT_DEMUXER, MSGL_INFO, "\nICY Info: %s\n", info); | |
118 free(info); | |
119 } | |
120 } | |
121 | |
16032 | 122 /** |
123 * \brief read data from scast/ultravox stream without any metadata | |
124 * \param fd file descriptor to read from | |
125 * \param buffer buffer to read data into | |
126 * \param size number of bytes to read | |
127 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd | |
128 */ | |
16013 | 129 static int scast_streaming_read(int fd, char *buffer, int size, |
130 streaming_ctrl_t *sc) { | |
131 scast_data_t *sd = (scast_data_t *)sc->data; | |
132 unsigned block, ret; | |
133 unsigned done = 0; | |
134 | |
135 // first read remaining data up to next metadata | |
136 block = sd->metaint - sd->metapos; | |
137 if (block > size) | |
138 block = size; | |
139 ret = my_read(fd, buffer, block, sc); | |
140 sd->metapos += ret; | |
141 done += ret; | |
142 if (ret != block) // read problems or eof | |
143 size = done; | |
144 | |
145 while (done < size) { // now comes the metadata | |
146 if (sd->is_ultravox) | |
16070 | 147 { |
16013 | 148 sd->metaint = uvox_meta_read(fd, sc); |
16070 | 149 if (!sd->metaint) |
150 size = done; | |
151 } | |
16013 | 152 else |
153 scast_meta_read(fd, sc); // read and display metadata | |
154 sd->metapos = 0; | |
155 block = size - done; | |
156 if (block > sd->metaint) | |
157 block = sd->metaint; | |
158 ret = my_read(fd, &buffer[done], block, sc); | |
159 sd->metapos += ret; | |
160 done += ret; | |
161 if (ret != block) // read problems or eof | |
162 size = done; | |
163 } | |
164 return done; | |
165 } | |
166 | |
167 static int scast_streaming_start(stream_t *stream) { | |
168 int metaint; | |
169 int fromhdr; | |
170 scast_data_t *scast_data; | |
171 HTTP_header_t *http_hdr = stream->streaming_ctrl->data; | |
16070 | 172 int is_ultravox = strcasecmp(stream->streaming_ctrl->url->protocol, "unsv") == 0; |
16013 | 173 if (!stream || stream->fd < 0 || !http_hdr) |
174 return -1; | |
175 if (is_ultravox) | |
176 metaint = 0; | |
177 else { | |
178 metaint = atoi(http_get_field(http_hdr, "Icy-MetaInt")); | |
179 if (metaint <= 0) | |
180 return -1; | |
181 } | |
182 stream->streaming_ctrl->buffer = malloc(http_hdr->body_size); | |
183 stream->streaming_ctrl->buffer_size = http_hdr->body_size; | |
184 stream->streaming_ctrl->buffer_pos = 0; | |
185 memcpy(stream->streaming_ctrl->buffer, http_hdr->body, http_hdr->body_size); | |
186 scast_data = malloc(sizeof(scast_data_t)); | |
187 scast_data->metaint = metaint; | |
188 scast_data->metapos = 0; | |
189 scast_data->is_ultravox = is_ultravox; | |
190 http_free(http_hdr); | |
191 stream->streaming_ctrl->data = scast_data; | |
192 stream->streaming_ctrl->streaming_read = scast_streaming_read; | |
193 stream->streaming_ctrl->streaming_seek = NULL; | |
194 stream->streaming_ctrl->prebuffer_size = 64 * 1024; // 64 KBytes | |
195 stream->streaming_ctrl->buffering = 1; | |
196 stream->streaming_ctrl->status = streaming_playing_e; | |
197 return 0; | |
198 } | |
199 | |
15585 | 200 static int nop_streaming_start( stream_t *stream ) { |
201 HTTP_header_t *http_hdr = NULL; | |
202 char *next_url=NULL; | |
203 URL_t *rd_url=NULL; | |
204 int fd,ret; | |
205 if( stream==NULL ) return -1; | |
206 | |
207 fd = stream->fd; | |
208 if( fd<0 ) { | |
209 fd = http_send_request( stream->streaming_ctrl->url, 0 ); | |
210 if( fd<0 ) return -1; | |
211 http_hdr = http_read_response( fd ); | |
212 if( http_hdr==NULL ) return -1; | |
213 | |
214 switch( http_hdr->status_code ) { | |
215 case 200: // OK | |
216 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Type: [%s]\n", http_get_field(http_hdr, "Content-Type") ); | |
217 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Length: [%s]\n", http_get_field(http_hdr, "Content-Length") ); | |
218 if( http_hdr->body_size>0 ) { | |
219 if( streaming_bufferize( stream->streaming_ctrl, http_hdr->body, http_hdr->body_size )<0 ) { | |
220 http_free( http_hdr ); | |
221 return -1; | |
222 } | |
223 } | |
224 break; | |
225 // Redirect | |
226 case 301: // Permanently | |
227 case 302: // Temporarily | |
228 ret=-1; | |
229 next_url = http_get_field( http_hdr, "Location" ); | |
230 | |
231 if (next_url != NULL) | |
232 rd_url=url_new(next_url); | |
233 | |
234 if (next_url != NULL && rd_url != NULL) { | |
235 mp_msg(MSGT_NETWORK,MSGL_STATUS,"Redirected: Using this url instead %s\n",next_url); | |
236 stream->streaming_ctrl->url=check4proxies(rd_url); | |
237 ret=nop_streaming_start(stream); //recursively get streaming started | |
238 } else { | |
239 mp_msg(MSGT_NETWORK,MSGL_ERR,"Redirection failed\n"); | |
240 closesocket( fd ); | |
241 fd = -1; | |
242 } | |
243 return ret; | |
244 break; | |
245 case 401: //Authorization required | |
246 case 403: //Forbidden | |
247 case 404: //Not found | |
248 case 500: //Server Error | |
249 default: | |
250 mp_msg(MSGT_NETWORK,MSGL_ERR,"Server returned code %d: %s\n", http_hdr->status_code, http_hdr->reason_phrase ); | |
251 closesocket( fd ); | |
252 fd = -1; | |
253 return -1; | |
254 break; | |
255 } | |
256 stream->fd = fd; | |
257 } else { | |
258 http_hdr = (HTTP_header_t*)stream->streaming_ctrl->data; | |
259 if( http_hdr->body_size>0 ) { | |
260 if( streaming_bufferize( stream->streaming_ctrl, http_hdr->body, http_hdr->body_size )<0 ) { | |
261 http_free( http_hdr ); | |
262 stream->streaming_ctrl->data = NULL; | |
263 return -1; | |
264 } | |
265 } | |
266 } | |
267 | |
268 if( http_hdr ) { | |
269 http_free( http_hdr ); | |
270 stream->streaming_ctrl->data = NULL; | |
271 } | |
272 | |
273 stream->streaming_ctrl->streaming_read = nop_streaming_read; | |
274 stream->streaming_ctrl->streaming_seek = nop_streaming_seek; | |
275 stream->streaming_ctrl->prebuffer_size = 64*1024; // 64 KBytes | |
276 stream->streaming_ctrl->buffering = 1; | |
277 stream->streaming_ctrl->status = streaming_playing_e; | |
278 return 0; | |
279 } | |
280 | |
870 | 281 HTTP_header_t * |
282 http_new_header() { | |
283 HTTP_header_t *http_hdr; | |
284 | |
285 http_hdr = (HTTP_header_t*)malloc(sizeof(HTTP_header_t)); | |
286 if( http_hdr==NULL ) return NULL; | |
287 memset( http_hdr, 0, sizeof(HTTP_header_t) ); | |
288 | |
289 return http_hdr; | |
290 } | |
291 | |
292 void | |
293 http_free( HTTP_header_t *http_hdr ) { | |
3039 | 294 HTTP_field_t *field, *field2free; |
870 | 295 if( http_hdr==NULL ) return; |
296 if( http_hdr->protocol!=NULL ) free( http_hdr->protocol ); | |
297 if( http_hdr->uri!=NULL ) free( http_hdr->uri ); | |
298 if( http_hdr->reason_phrase!=NULL ) free( http_hdr->reason_phrase ); | |
299 if( http_hdr->field_search!=NULL ) free( http_hdr->field_search ); | |
902 | 300 if( http_hdr->method!=NULL ) free( http_hdr->method ); |
301 if( http_hdr->buffer!=NULL ) free( http_hdr->buffer ); | |
3039 | 302 field = http_hdr->first_field; |
303 while( field!=NULL ) { | |
304 field2free = field; | |
14460 | 305 if (field->field_name) |
306 free(field->field_name); | |
3039 | 307 field = field->next; |
308 free( field2free ); | |
309 } | |
870 | 310 free( http_hdr ); |
3039 | 311 http_hdr = NULL; |
870 | 312 } |
313 | |
902 | 314 int |
315 http_response_append( HTTP_header_t *http_hdr, char *response, int length ) { | |
1027 | 316 if( http_hdr==NULL || response==NULL || length<0 ) return -1; |
7304
7da2c2a68547
Check if realloc failed on http_hdr->buffer instead of ptr in http_response_append,
bertrand
parents:
7293
diff
changeset
|
317 |
7293 | 318 http_hdr->buffer = (char*)realloc( http_hdr->buffer, http_hdr->buffer_size+length+1 ); |
7304
7da2c2a68547
Check if realloc failed on http_hdr->buffer instead of ptr in http_response_append,
bertrand
parents:
7293
diff
changeset
|
319 if( http_hdr->buffer==NULL ) { |
7293 | 320 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory (re)allocation failed\n"); |
902 | 321 return -1; |
322 } | |
7293 | 323 memcpy( http_hdr->buffer+http_hdr->buffer_size, response, length ); |
324 http_hdr->buffer_size += length; | |
325 http_hdr->buffer[http_hdr->buffer_size]=0; // close the string! | |
902 | 326 return http_hdr->buffer_size; |
327 } | |
328 | |
329 int | |
2489
0ecc1b4f7cf8
Added ASF http server streaming (Not mms streaming).
bertrand
parents:
2310
diff
changeset
|
330 http_is_header_entire( HTTP_header_t *http_hdr ) { |
902 | 331 if( http_hdr==NULL ) return -1; |
7293 | 332 if( http_hdr->buffer==NULL ) return 0; // empty |
333 | |
3784 | 334 if( strstr(http_hdr->buffer, "\r\n\r\n")==NULL && |
335 strstr(http_hdr->buffer, "\n\n")==NULL ) return 0; | |
336 return 1; | |
902 | 337 } |
338 | |
339 int | |
340 http_response_parse( HTTP_header_t *http_hdr ) { | |
870 | 341 char *hdr_ptr, *ptr; |
342 char *field=NULL; | |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
343 int pos_hdr_sep, hdr_sep_len, len; |
902 | 344 if( http_hdr==NULL ) return -1; |
345 if( http_hdr->is_parsed ) return 0; | |
870 | 346 |
347 // Get the protocol | |
902 | 348 hdr_ptr = strstr( http_hdr->buffer, " " ); |
870 | 349 if( hdr_ptr==NULL ) { |
5915 | 350 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. No space separator found.\n"); |
902 | 351 return -1; |
870 | 352 } |
902 | 353 len = hdr_ptr-http_hdr->buffer; |
870 | 354 http_hdr->protocol = (char*)malloc(len+1); |
355 if( http_hdr->protocol==NULL ) { | |
5915 | 356 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
902 | 357 return -1; |
870 | 358 } |
902 | 359 strncpy( http_hdr->protocol, http_hdr->buffer, len ); |
360 http_hdr->protocol[len]='\0'; | |
870 | 361 if( !strncasecmp( http_hdr->protocol, "HTTP", 4) ) { |
362 if( sscanf( http_hdr->protocol+5,"1.%d", &(http_hdr->http_minor_version) )!=1 ) { | |
5915 | 363 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. Unable to get HTTP minor version.\n"); |
902 | 364 return -1; |
870 | 365 } |
366 } | |
367 | |
368 // Get the status code | |
369 if( sscanf( ++hdr_ptr, "%d", &(http_hdr->status_code) )!=1 ) { | |
5915 | 370 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. Unable to get status code.\n"); |
902 | 371 return -1; |
870 | 372 } |
373 hdr_ptr += 4; | |
374 | |
375 // Get the reason phrase | |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
376 ptr = strstr( hdr_ptr, "\n" ); |
870 | 377 if( hdr_ptr==NULL ) { |
5915 | 378 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. Unable to get the reason phrase.\n"); |
902 | 379 return -1; |
870 | 380 } |
381 len = ptr-hdr_ptr; | |
382 http_hdr->reason_phrase = (char*)malloc(len+1); | |
383 if( http_hdr->reason_phrase==NULL ) { | |
5915 | 384 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
902 | 385 return -1; |
870 | 386 } |
387 strncpy( http_hdr->reason_phrase, hdr_ptr, len ); | |
4311 | 388 if( http_hdr->reason_phrase[len-1]=='\r' ) { |
389 len--; | |
390 } | |
870 | 391 http_hdr->reason_phrase[len]='\0'; |
392 | |
393 // Set the position of the header separator: \r\n\r\n | |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
394 hdr_sep_len = 4; |
902 | 395 ptr = strstr( http_hdr->buffer, "\r\n\r\n" ); |
870 | 396 if( ptr==NULL ) { |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
397 ptr = strstr( http_hdr->buffer, "\n\n" ); |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
398 if( ptr==NULL ) { |
5915 | 399 mp_msg(MSGT_NETWORK,MSGL_ERR,"Header may be incomplete. No CRLF CRLF found.\n"); |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
400 return -1; |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
401 } |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
402 hdr_sep_len = 2; |
870 | 403 } |
902 | 404 pos_hdr_sep = ptr-http_hdr->buffer; |
870 | 405 |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
406 // Point to the first line after the method line. |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
407 hdr_ptr = strstr( http_hdr->buffer, "\n" )+1; |
870 | 408 do { |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
409 ptr = hdr_ptr; |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
410 while( *ptr!='\r' && *ptr!='\n' ) ptr++; |
870 | 411 len = ptr-hdr_ptr; |
4816
f1dea39a50bb
Fixed the http response parser when the http header only has the HTTP
bertrand
parents:
4311
diff
changeset
|
412 if( len==0 ) break; |
870 | 413 field = (char*)realloc(field, len+1); |
414 if( field==NULL ) { | |
5915 | 415 mp_msg(MSGT_NETWORK,MSGL_ERR,"Memory allocation failed\n"); |
902 | 416 return -1; |
870 | 417 } |
418 strncpy( field, hdr_ptr, len ); | |
419 field[len]='\0'; | |
420 http_set_field( http_hdr, field ); | |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
421 hdr_ptr = ptr+((*ptr=='\r')?2:1); |
902 | 422 } while( hdr_ptr<(http_hdr->buffer+pos_hdr_sep) ); |
870 | 423 |
424 if( field!=NULL ) free( field ); | |
425 | |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
426 if( pos_hdr_sep+hdr_sep_len<http_hdr->buffer_size ) { |
870 | 427 // Response has data! |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
428 http_hdr->body = http_hdr->buffer+pos_hdr_sep+hdr_sep_len; |
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
429 http_hdr->body_size = http_hdr->buffer_size-(pos_hdr_sep+hdr_sep_len); |
870 | 430 } |
431 | |
902 | 432 http_hdr->is_parsed = 1; |
433 return 0; | |
870 | 434 } |
435 | |
436 char * | |
902 | 437 http_build_request( HTTP_header_t *http_hdr ) { |
3497 | 438 char *ptr, *uri=NULL; |
902 | 439 int len; |
3039 | 440 HTTP_field_t *field; |
870 | 441 if( http_hdr==NULL ) return NULL; |
442 | |
443 if( http_hdr->method==NULL ) http_set_method( http_hdr, "GET"); | |
444 if( http_hdr->uri==NULL ) http_set_uri( http_hdr, "/"); | |
3497 | 445 else { |
12391 | 446 uri = (char*)malloc(strlen(http_hdr->uri) + 1); |
3497 | 447 if( uri==NULL ) { |
5915 | 448 mp_msg(MSGT_NETWORK,MSGL_ERR,"Memory allocation failed\n"); |
3497 | 449 return NULL; |
450 } | |
12391 | 451 strcpy(uri,http_hdr->uri); |
3497 | 452 } |
870 | 453 |
3497 | 454 //**** Compute the request length |
455 // Add the Method line | |
456 len = strlen(http_hdr->method)+strlen(uri)+12; | |
457 // Add the fields | |
458 field = http_hdr->first_field; | |
3039 | 459 while( field!=NULL ) { |
460 len += strlen(field->field_name)+2; | |
461 field = field->next; | |
462 } | |
3497 | 463 // Add the CRLF |
464 len += 2; | |
465 // Add the body | |
902 | 466 if( http_hdr->body!=NULL ) { |
467 len += http_hdr->body_size; | |
468 } | |
3497 | 469 // Free the buffer if it was previously used |
902 | 470 if( http_hdr->buffer!=NULL ) { |
471 free( http_hdr->buffer ); | |
472 http_hdr->buffer = NULL; | |
473 } | |
3497 | 474 http_hdr->buffer = (char*)malloc(len+1); |
902 | 475 if( http_hdr->buffer==NULL ) { |
5915 | 476 mp_msg(MSGT_NETWORK,MSGL_ERR,"Memory allocation failed\n"); |
902 | 477 return NULL; |
478 } | |
479 http_hdr->buffer_size = len; | |
480 | |
3497 | 481 //*** Building the request |
902 | 482 ptr = http_hdr->buffer; |
3497 | 483 // Add the method line |
484 ptr += sprintf( ptr, "%s %s HTTP/1.%d\r\n", http_hdr->method, uri, http_hdr->http_minor_version ); | |
3039 | 485 field = http_hdr->first_field; |
3497 | 486 // Add the field |
3039 | 487 while( field!=NULL ) { |
488 ptr += sprintf( ptr, "%s\r\n", field->field_name ); | |
489 field = field->next; | |
490 } | |
870 | 491 ptr += sprintf( ptr, "\r\n" ); |
3497 | 492 // Add the body |
870 | 493 if( http_hdr->body!=NULL ) { |
494 memcpy( ptr, http_hdr->body, http_hdr->body_size ); | |
495 } | |
3497 | 496 |
497 if( uri ) free( uri ); | |
902 | 498 return http_hdr->buffer; |
870 | 499 } |
500 | |
501 char * | |
502 http_get_field( HTTP_header_t *http_hdr, const char *field_name ) { | |
503 if( http_hdr==NULL || field_name==NULL ) return NULL; | |
3039 | 504 http_hdr->field_search_pos = http_hdr->first_field; |
505 http_hdr->field_search = (char*)realloc( http_hdr->field_search, strlen(field_name)+1 ); | |
870 | 506 if( http_hdr->field_search==NULL ) { |
5915 | 507 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 508 return NULL; |
509 } | |
510 strcpy( http_hdr->field_search, field_name ); | |
511 return http_get_next_field( http_hdr ); | |
512 } | |
513 | |
514 char * | |
515 http_get_next_field( HTTP_header_t *http_hdr ) { | |
516 char *ptr; | |
3039 | 517 HTTP_field_t *field; |
870 | 518 if( http_hdr==NULL ) return NULL; |
519 | |
3039 | 520 field = http_hdr->field_search_pos; |
521 while( field!=NULL ) { | |
522 ptr = strstr( field->field_name, ":" ); | |
870 | 523 if( ptr==NULL ) return NULL; |
3039 | 524 if( !strncasecmp( field->field_name, http_hdr->field_search, ptr-(field->field_name) ) ) { |
870 | 525 ptr++; // Skip the column |
526 while( ptr[0]==' ' ) ptr++; // Skip the spaces if there is some | |
3039 | 527 http_hdr->field_search_pos = field->next; |
870 | 528 return ptr; // return the value without the field name |
529 } | |
3039 | 530 field = field->next; |
870 | 531 } |
532 return NULL; | |
533 } | |
534 | |
535 void | |
3039 | 536 http_set_field( HTTP_header_t *http_hdr, const char *field_name ) { |
537 HTTP_field_t *new_field; | |
538 if( http_hdr==NULL || field_name==NULL ) return; | |
870 | 539 |
3039 | 540 new_field = (HTTP_field_t*)malloc(sizeof(HTTP_field_t)); |
541 if( new_field==NULL ) { | |
5915 | 542 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 543 return; |
544 } | |
3039 | 545 new_field->next = NULL; |
546 new_field->field_name = (char*)malloc(strlen(field_name)+1); | |
547 if( new_field->field_name==NULL ) { | |
5915 | 548 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
3039 | 549 return; |
550 } | |
551 strcpy( new_field->field_name, field_name ); | |
552 | |
553 if( http_hdr->last_field==NULL ) { | |
554 http_hdr->first_field = new_field; | |
555 } else { | |
556 http_hdr->last_field->next = new_field; | |
557 } | |
558 http_hdr->last_field = new_field; | |
870 | 559 http_hdr->field_nb++; |
560 } | |
561 | |
562 void | |
563 http_set_method( HTTP_header_t *http_hdr, const char *method ) { | |
564 if( http_hdr==NULL || method==NULL ) return; | |
565 | |
566 http_hdr->method = (char*)malloc(strlen(method)+1); | |
567 if( http_hdr->method==NULL ) { | |
5915 | 568 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 569 return; |
570 } | |
571 strcpy( http_hdr->method, method ); | |
572 } | |
573 | |
574 void | |
575 http_set_uri( HTTP_header_t *http_hdr, const char *uri ) { | |
576 if( http_hdr==NULL || uri==NULL ) return; | |
577 | |
578 http_hdr->uri = (char*)malloc(strlen(uri)+1); | |
579 if( http_hdr->uri==NULL ) { | |
5915 | 580 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 581 return; |
582 } | |
583 strcpy( http_hdr->uri, uri ); | |
584 } | |
585 | |
6514 | 586 int |
587 http_add_basic_authentication( HTTP_header_t *http_hdr, const char *username, const char *password ) { | |
588 char *auth, *usr_pass, *b64_usr_pass; | |
589 int encoded_len, pass_len=0, out_len; | |
590 if( http_hdr==NULL || username==NULL ) return -1; | |
591 | |
592 if( password!=NULL ) { | |
593 pass_len = strlen(password); | |
594 } | |
595 | |
596 usr_pass = (char*)malloc(strlen(username)+pass_len+2); | |
597 if( usr_pass==NULL ) { | |
598 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); | |
599 return -1; | |
600 } | |
601 | |
602 sprintf( usr_pass, "%s:%s", username, (password==NULL)?"":password ); | |
603 | |
604 // Base 64 encode with at least 33% more data than the original size | |
605 encoded_len = strlen(usr_pass)*2; | |
606 b64_usr_pass = (char*)malloc(encoded_len); | |
607 if( b64_usr_pass==NULL ) { | |
608 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); | |
609 return -1; | |
610 } | |
611 | |
612 out_len = base64_encode( usr_pass, strlen(usr_pass), b64_usr_pass, encoded_len); | |
613 if( out_len<0 ) { | |
614 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Base64 out overflow\n"); | |
615 return -1; | |
616 } | |
617 | |
618 b64_usr_pass[out_len]='\0'; | |
619 | |
620 auth = (char*)malloc(encoded_len+22); | |
621 if( auth==NULL ) { | |
622 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); | |
623 return -1; | |
624 } | |
625 | |
626 sprintf( auth, "Authorization: Basic %s", b64_usr_pass); | |
627 http_set_field( http_hdr, auth ); | |
628 | |
629 free( usr_pass ); | |
630 free( b64_usr_pass ); | |
631 free( auth ); | |
632 | |
633 return 0; | |
634 } | |
635 | |
870 | 636 void |
637 http_debug_hdr( HTTP_header_t *http_hdr ) { | |
3039 | 638 HTTP_field_t *field; |
639 int i = 0; | |
902 | 640 if( http_hdr==NULL ) return; |
870 | 641 |
5915 | 642 mp_msg(MSGT_NETWORK,MSGL_V,"--- HTTP DEBUG HEADER --- START ---\n"); |
643 mp_msg(MSGT_NETWORK,MSGL_V,"protocol: [%s]\n", http_hdr->protocol ); | |
644 mp_msg(MSGT_NETWORK,MSGL_V,"http minor version: [%d]\n", http_hdr->http_minor_version ); | |
645 mp_msg(MSGT_NETWORK,MSGL_V,"uri: [%s]\n", http_hdr->uri ); | |
646 mp_msg(MSGT_NETWORK,MSGL_V,"method: [%s]\n", http_hdr->method ); | |
647 mp_msg(MSGT_NETWORK,MSGL_V,"status code: [%d]\n", http_hdr->status_code ); | |
648 mp_msg(MSGT_NETWORK,MSGL_V,"reason phrase: [%s]\n", http_hdr->reason_phrase ); | |
649 mp_msg(MSGT_NETWORK,MSGL_V,"body size: [%d]\n", http_hdr->body_size ); | |
870 | 650 |
5915 | 651 mp_msg(MSGT_NETWORK,MSGL_V,"Fields:\n"); |
3039 | 652 field = http_hdr->first_field; |
653 while( field!=NULL ) { | |
5915 | 654 mp_msg(MSGT_NETWORK,MSGL_V," %d - %s\n", i++, field->field_name ); |
3039 | 655 field = field->next; |
656 } | |
5915 | 657 mp_msg(MSGT_NETWORK,MSGL_V,"--- HTTP DEBUG HEADER --- END ---\n"); |
870 | 658 } |
6514 | 659 |
660 int | |
661 base64_encode(const void *enc, int encLen, char *out, int outMax) { | |
662 static const char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"; | |
663 | |
664 unsigned char *encBuf; | |
665 int outLen; | |
666 unsigned int bits; | |
667 unsigned int shift; | |
668 | |
669 encBuf = (unsigned char*)enc; | |
670 outLen = 0; | |
671 bits = 0; | |
672 shift = 0; | |
673 | |
674 while( outLen<outMax ) { | |
675 if( encLen>0 ) { | |
676 // Shift in byte | |
677 bits <<= 8; | |
678 bits |= *encBuf; | |
679 shift += 8; | |
680 // Next byte | |
681 encBuf++; | |
682 encLen--; | |
683 } else if( shift>0 ) { | |
684 // Pad last bits to 6 bits - will end next loop | |
685 bits <<= 6 - shift; | |
686 shift = 6; | |
687 } else { | |
688 // Terminate with Mime style '=' | |
689 *out = '='; | |
690 outLen++; | |
691 | |
692 return outLen; | |
693 } | |
694 | |
695 // Encode 6 bit segments | |
696 while( shift>=6 ) { | |
697 shift -= 6; | |
698 *out = b64[ (bits >> shift) & 0x3F ]; | |
699 out++; | |
700 outLen++; | |
701 } | |
702 } | |
703 | |
704 // Output overflow | |
705 return -1; | |
706 } | |
707 | |
15585 | 708 static int http_streaming_start(stream_t *stream, int* file_format) { |
709 HTTP_header_t *http_hdr; | |
710 unsigned int i; | |
711 int fd=-1; | |
712 int redirect = 0; | |
713 int auth_retry=0; | |
714 int seekable=0; | |
715 char *content_type; | |
716 char *next_url; | |
717 URL_t *url = stream->streaming_ctrl->url; | |
6514 | 718 |
15585 | 719 do |
720 { | |
721 fd = http_send_request( url, 0 ); | |
722 if( fd<0 ) { | |
723 return -1; | |
724 } | |
725 | |
726 http_hdr = http_read_response( fd ); | |
727 if( http_hdr==NULL ) { | |
728 closesocket( fd ); | |
729 http_free( http_hdr ); | |
730 return -1; | |
731 } | |
732 | |
733 stream->fd=fd; | |
734 if( verbose>0 ) { | |
735 http_debug_hdr( http_hdr ); | |
736 } | |
737 | |
738 stream->streaming_ctrl->data = (void*)http_hdr; | |
739 | |
740 // Check if we can make partial content requests and thus seek in http-streams | |
741 if( http_hdr!=NULL && http_hdr->status_code==200 ) { | |
742 char *accept_ranges; | |
743 if( (accept_ranges = http_get_field(http_hdr,"Accept-Ranges")) != NULL ) | |
744 seekable = strncmp(accept_ranges,"bytes",5)==0; | |
745 } | |
746 | |
747 // Check if the response is an ICY status_code reason_phrase | |
748 if( !strcasecmp(http_hdr->protocol, "ICY") ) { | |
749 switch( http_hdr->status_code ) { | |
750 case 200: { // OK | |
751 char *field_data = NULL; | |
752 // note: I skip icy-notice1 and 2, as they contain html <BR> | |
753 // and are IMHO useless info ::atmos | |
754 if( (field_data = http_get_field(http_hdr, "icy-name")) != NULL ) | |
755 mp_msg(MSGT_NETWORK,MSGL_INFO,"Name : %s\n", field_data); field_data = NULL; | |
756 if( (field_data = http_get_field(http_hdr, "icy-genre")) != NULL ) | |
757 mp_msg(MSGT_NETWORK,MSGL_INFO,"Genre : %s\n", field_data); field_data = NULL; | |
758 if( (field_data = http_get_field(http_hdr, "icy-url")) != NULL ) | |
759 mp_msg(MSGT_NETWORK,MSGL_INFO,"Website: %s\n", field_data); field_data = NULL; | |
760 // XXX: does this really mean public server? ::atmos | |
761 if( (field_data = http_get_field(http_hdr, "icy-pub")) != NULL ) | |
762 mp_msg(MSGT_NETWORK,MSGL_INFO,"Public : %s\n", atoi(field_data)?"yes":"no"); field_data = NULL; | |
763 if( (field_data = http_get_field(http_hdr, "icy-br")) != NULL ) | |
764 mp_msg(MSGT_NETWORK,MSGL_INFO,"Bitrate: %skbit/s\n", field_data); field_data = NULL; | |
765 | |
766 // If content-type == video/nsv we most likely have a winamp video stream | |
767 // otherwise it should be mp3. if there are more types consider adding mime type | |
768 // handling like later | |
769 if ( (field_data = http_get_field(http_hdr, "content-type")) != NULL && (!strcmp(field_data, "video/nsv") || !strcmp(field_data, "misc/ultravox"))) | |
770 *file_format = DEMUXER_TYPE_NSV; | |
771 else | |
772 *file_format = DEMUXER_TYPE_AUDIO; | |
773 return 0; | |
774 } | |
775 case 400: // Server Full | |
776 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server is full, skipping!\n"); | |
777 return -1; | |
778 case 401: // Service Unavailable | |
779 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server return service unavailable, skipping!\n"); | |
780 return -1; | |
781 case 403: // Service Forbidden | |
782 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server return 'Service Forbidden'\n"); | |
783 return -1; | |
784 case 404: // Resource Not Found | |
785 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server couldn't find requested stream, skipping!\n"); | |
786 return -1; | |
787 default: | |
788 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: unhandled ICY-Errorcode, contact MPlayer developers!\n"); | |
789 return -1; | |
790 } | |
791 } | |
792 | |
793 // Assume standard http if not ICY | |
794 switch( http_hdr->status_code ) { | |
795 case 200: // OK | |
796 // Look if we can use the Content-Type | |
797 content_type = http_get_field( http_hdr, "Content-Type" ); | |
798 if( content_type!=NULL ) { | |
799 char *content_length = NULL; | |
800 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Type: [%s]\n", content_type ); | |
801 if( (content_length = http_get_field(http_hdr, "Content-Length")) != NULL) | |
802 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Length: [%s]\n", http_get_field(http_hdr, "Content-Length")); | |
803 // Check in the mime type table for a demuxer type | |
804 i = 0; | |
805 while(mime_type_table[i].mime_type != NULL) { | |
806 if( !strcasecmp( content_type, mime_type_table[i].mime_type ) ) { | |
807 *file_format = mime_type_table[i].demuxer_type; | |
808 return seekable; | |
809 } | |
810 i++; | |
811 } | |
812 } | |
813 // Not found in the mime type table, don't fail, | |
814 // we should try raw HTTP | |
815 return seekable; | |
816 // Redirect | |
817 case 301: // Permanently | |
818 case 302: // Temporarily | |
819 // TODO: RFC 2616, recommand to detect infinite redirection loops | |
820 next_url = http_get_field( http_hdr, "Location" ); | |
821 if( next_url!=NULL ) { | |
822 closesocket( fd ); | |
823 url_free( url ); | |
824 stream->streaming_ctrl->url = url = url_new( next_url ); | |
825 http_free( http_hdr ); | |
826 redirect = 1; | |
827 } | |
828 break; | |
829 case 401: // Authentication required | |
830 if( http_authenticate(http_hdr, url, &auth_retry)<0 ) return STREAM_UNSUPORTED; | |
831 redirect = 1; | |
832 break; | |
833 default: | |
834 mp_msg(MSGT_NETWORK,MSGL_ERR,"Server returned %d: %s\n", http_hdr->status_code, http_hdr->reason_phrase ); | |
835 return -1; | |
836 } | |
837 } while( redirect ); | |
838 | |
839 return -1; | |
840 } | |
841 | |
842 static int fixup_open(stream_t *stream,int seekable) { | |
16013 | 843 HTTP_header_t *http_hdr = stream->streaming_ctrl->data; |
16078
095e980cf7c0
Some ICY servers (e.g. http://broadcast.spnet.net:8000/darikhigh) do not set
reimar
parents:
16070
diff
changeset
|
844 int is_icy = http_hdr && http_get_field(http_hdr, "Icy-MetaInt"); |
16013 | 845 char *content_type = http_get_field( http_hdr, "Content-Type" ); |
16070 | 846 int is_ultravox = strcasecmp(stream->streaming_ctrl->url->protocol, "unsv") == 0; |
15585 | 847 |
848 stream->type = STREAMTYPE_STREAM; | |
16013 | 849 if(!is_icy && !is_ultravox && seekable) |
15585 | 850 { |
851 stream->flags |= STREAM_SEEK; | |
852 stream->seek = http_seek; | |
853 } | |
854 stream->streaming_ctrl->bandwidth = network_bandwidth; | |
16013 | 855 if ((!is_icy && !is_ultravox) || scast_streaming_start(stream)) |
15585 | 856 if(nop_streaming_start( stream )) { |
857 mp_msg(MSGT_NETWORK,MSGL_ERR,"nop_streaming_start failed\n"); | |
858 streaming_ctrl_free(stream->streaming_ctrl); | |
859 stream->streaming_ctrl = NULL; | |
860 return STREAM_UNSUPORTED; | |
861 } | |
862 | |
863 fixup_network_stream_cache(stream); | |
864 return STREAM_OK; | |
865 } | |
866 | |
867 static int open_s1(stream_t *stream,int mode, void* opts, int* file_format) { | |
868 int seekable=0; | |
869 URL_t *url; | |
870 | |
871 stream->streaming_ctrl = streaming_ctrl_new(); | |
872 if( stream->streaming_ctrl==NULL ) { | |
873 return STREAM_ERROR; | |
874 } | |
875 stream->streaming_ctrl->bandwidth = network_bandwidth; | |
876 url = url_new(stream->url); | |
877 stream->streaming_ctrl->url = check4proxies(url); | |
16417 | 878 url_free(url); |
15585 | 879 |
880 mp_msg(MSGT_OPEN, MSGL_INFO, "STREAM_HTTP(1), URL: %s\n", stream->url); | |
881 seekable = http_streaming_start(stream, file_format); | |
882 if((seekable < 0) || (*file_format == DEMUXER_TYPE_ASF)) { | |
883 streaming_ctrl_free(stream->streaming_ctrl); | |
884 stream->streaming_ctrl = NULL; | |
885 return STREAM_UNSUPORTED; | |
886 } | |
887 | |
888 return fixup_open(stream, seekable); | |
889 } | |
890 | |
891 static int open_s2(stream_t *stream,int mode, void* opts, int* file_format) { | |
892 int seekable=0; | |
893 URL_t *url; | |
894 | |
895 stream->streaming_ctrl = streaming_ctrl_new(); | |
896 if( stream->streaming_ctrl==NULL ) { | |
897 return STREAM_ERROR; | |
898 } | |
899 stream->streaming_ctrl->bandwidth = network_bandwidth; | |
900 url = url_new(stream->url); | |
901 stream->streaming_ctrl->url = check4proxies(url); | |
902 //url_free(url); | |
903 | |
904 mp_msg(MSGT_OPEN, MSGL_INFO, "STREAM_HTTP(2), URL: %s\n", stream->url); | |
905 seekable = http_streaming_start(stream, file_format); | |
906 if(seekable < 0) { | |
907 streaming_ctrl_free(stream->streaming_ctrl); | |
908 stream->streaming_ctrl = NULL; | |
909 return STREAM_UNSUPORTED; | |
910 } | |
911 | |
912 return fixup_open(stream, seekable); | |
913 } | |
914 | |
915 | |
916 stream_info_t stream_info_http1 = { | |
917 "http streaming", | |
918 "null", | |
919 "Bertrand, Albeau, Reimar Doeffinger, Arpi?", | |
920 "plain http", | |
921 open_s1, | |
16013 | 922 {"http", "http_proxy", "unsv", NULL}, |
15585 | 923 NULL, |
924 0 // Urls are an option string | |
925 }; | |
926 | |
927 stream_info_t stream_info_http2 = { | |
928 "http streaming", | |
929 "null", | |
930 "Bertrand, Albeu, Arpi? who?", | |
931 "plain http, aslo used as falback for many other protocols", | |
932 open_s2, | |
933 {"http", "http_proxy", "pnm", "mms", "mmsu", "mmst", "rtsp", NULL}, //all the others as fallback | |
934 NULL, | |
935 0 // Urls are an option string | |
936 }; |