Mercurial > mplayer.hg
annotate stream/http.c @ 30531:704903d34069
Rename gui/mplayer/gtk/menu.[ch] --> gui/mplayer/gtk/gtkmenu.[ch].
This avoids confusion with headers of the same name in other places.
author | diego |
---|---|
date | Sun, 14 Feb 2010 12:55:02 +0000 |
parents | ce0122361a39 |
children | 11eebd7c8879 |
rev | line source |
---|---|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
1 /* |
902 | 2 * HTTP Helper |
30426
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
3 * |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
4 * Copyright (C) 2001 Bertrand Baudet <bertrand_baudet@yahoo.com> |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
5 * |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
6 * This file is part of MPlayer. |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
7 * |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
8 * MPlayer is free software; you can redistribute it and/or modify |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
9 * it under the terms of the GNU General Public License as published by |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
10 * the Free Software Foundation; either version 2 of the License, or |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
11 * (at your option) any later version. |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
12 * |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
13 * MPlayer is distributed in the hope that it will be useful, |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
16 * GNU General Public License for more details. |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
17 * |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
18 * You should have received a copy of the GNU General Public License along |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
19 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
ce0122361a39
Add license header to all files missing it in the stream subdirectory.
diego
parents:
30357
diff
changeset
|
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
902 | 21 */ |
22 | |
15614
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
23 #include "config.h" |
a4a46131ee71
Change header order to avoid compile error because of STREAM_SEEK
reimar
parents:
15585
diff
changeset
|
24 |
870 | 25 #include <stdio.h> |
26 #include <stdlib.h> | |
27 #include <string.h> | |
15585 | 28 #include <unistd.h> |
870 | 29 |
28402 | 30 #if !HAVE_WINSOCK2_H |
27472
c0b233cd30ca
Revert moving closesocket definition and network headers to network.h.
diego
parents:
27464
diff
changeset
|
31 #else |
c0b233cd30ca
Revert moving closesocket definition and network headers to network.h.
diego
parents:
27464
diff
changeset
|
32 #include <winsock2.h> |
c0b233cd30ca
Revert moving closesocket definition and network headers to network.h.
diego
parents:
27464
diff
changeset
|
33 #include <ws2tcpip.h> |
c0b233cd30ca
Revert moving closesocket definition and network headers to network.h.
diego
parents:
27464
diff
changeset
|
34 #endif |
c0b233cd30ca
Revert moving closesocket definition and network headers to network.h.
diego
parents:
27464
diff
changeset
|
35 |
c0b233cd30ca
Revert moving closesocket definition and network headers to network.h.
diego
parents:
27464
diff
changeset
|
36 #include "http.h" |
4816
f1dea39a50bb
Fixed the http response parser when the http header only has the HTTP
bertrand
parents:
4311
diff
changeset
|
37 #include "url.h" |
5915 | 38 #include "mp_msg.h" |
870 | 39 |
15585 | 40 #include "stream.h" |
19312
ab8d6b6deb63
proper inclusion of demuxer.h (including libmpdemux in Makefile only was to make previous split easier)
ben
parents:
19271
diff
changeset
|
41 #include "libmpdemux/demuxer.h" |
15585 | 42 #include "network.h" |
43 #include "help_mp.h" | |
44 | |
45 | |
25246 | 46 extern const mime_struct_t mime_type_table[]; |
15585 | 47 extern int stream_cache_size; |
48 extern int network_bandwidth; | |
49 | |
28051 | 50 int http_seek(stream_t *stream, off_t pos); |
15585 | 51 |
16013 | 52 typedef struct { |
53 unsigned metaint; | |
54 unsigned metapos; | |
55 int is_ultravox; | |
56 } scast_data_t; | |
57 | |
58 /** | |
59 * \brief first read any data from sc->buffer then from fd | |
60 * \param fd file descriptor to read data from | |
61 * \param buffer buffer to read into | |
62 * \param len how many bytes to read | |
63 * \param sc streaming control containing buffer to read from first | |
64 * \return len unless there is a read error or eof | |
65 */ | |
66 static unsigned my_read(int fd, char *buffer, int len, streaming_ctrl_t *sc) { | |
67 unsigned pos = 0; | |
68 unsigned cp_len = sc->buffer_size - sc->buffer_pos; | |
69 if (cp_len > len) | |
70 cp_len = len; | |
71 memcpy(buffer, &sc->buffer[sc->buffer_pos], cp_len); | |
72 sc->buffer_pos += cp_len; | |
73 pos += cp_len; | |
74 while (pos < len) { | |
16070 | 75 int ret = recv(fd, &buffer[pos], len - pos, 0); |
16013 | 76 if (ret <= 0) |
77 break; | |
78 pos += ret; | |
79 } | |
80 return pos; | |
81 } | |
82 | |
16032 | 83 /** |
84 * \brief read and process (i.e. discard *g*) a block of ultravox metadata | |
85 * \param fd file descriptor to read from | |
86 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd | |
87 * \return number of real data before next metadata block starts or 0 on error | |
88 */ | |
16013 | 89 static unsigned uvox_meta_read(int fd, streaming_ctrl_t *sc) { |
90 unsigned metaint; | |
16070 | 91 unsigned char info[6] = {0, 0, 0, 0, 0, 0}; |
92 int info_read; | |
16013 | 93 do { |
16070 | 94 info_read = my_read(fd, info, 1, sc); |
16013 | 95 if (info[0] == 0x00) |
16070 | 96 info_read = my_read(fd, info, 6, sc); |
16013 | 97 else |
16070 | 98 info_read += my_read(fd, &info[1], 5, sc); |
99 if (info_read != 6) // read error or eof | |
100 return 0; | |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
101 // sync byte and reserved flags |
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
102 if (info[0] != 0x5a || (info[1] & 0xfc) != 0x00) { |
16013 | 103 mp_msg(MSGT_DEMUXER, MSGL_ERR, "Invalid or unknown uvox metadata\n"); |
104 return 0; | |
105 } | |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
106 if (info[1] & 0x01) |
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
107 mp_msg(MSGT_DEMUXER, MSGL_WARN, "Encrypted ultravox data\n"); |
16013 | 108 metaint = info[4] << 8 | info[5]; |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
109 if ((info[3] & 0xf) < 0x07) { // discard any metadata nonsense |
16013 | 110 char *metabuf = malloc(metaint); |
111 my_read(fd, metabuf, metaint, sc); | |
112 free(metabuf); | |
113 } | |
16031
c2e78215f0d9
Ultravox improvements according to specs (didn't know they existed *g*)
reimar
parents:
16013
diff
changeset
|
114 } while ((info[3] & 0xf) < 0x07); |
16013 | 115 return metaint; |
116 } | |
117 | |
118 /** | |
119 * \brief read one scast meta data entry and print it | |
16032 | 120 * \param fd file descriptor to read from |
121 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd | |
16013 | 122 */ |
123 static void scast_meta_read(int fd, streaming_ctrl_t *sc) { | |
124 unsigned char tmp = 0; | |
125 unsigned metalen; | |
126 my_read(fd, &tmp, 1, sc); | |
127 metalen = tmp * 16; | |
128 if (metalen > 0) { | |
18879 | 129 char *info = malloc(metalen + 1); |
16013 | 130 unsigned nlen = my_read(fd, info, metalen, sc); |
131 info[nlen] = 0; | |
132 mp_msg(MSGT_DEMUXER, MSGL_INFO, "\nICY Info: %s\n", info); | |
133 free(info); | |
134 } | |
135 } | |
136 | |
16032 | 137 /** |
138 * \brief read data from scast/ultravox stream without any metadata | |
139 * \param fd file descriptor to read from | |
140 * \param buffer buffer to read data into | |
141 * \param size number of bytes to read | |
142 * \param sc streaming_ctrl_t whose buffer is consumed before reading from fd | |
143 */ | |
16013 | 144 static int scast_streaming_read(int fd, char *buffer, int size, |
145 streaming_ctrl_t *sc) { | |
146 scast_data_t *sd = (scast_data_t *)sc->data; | |
147 unsigned block, ret; | |
148 unsigned done = 0; | |
149 | |
150 // first read remaining data up to next metadata | |
151 block = sd->metaint - sd->metapos; | |
152 if (block > size) | |
153 block = size; | |
154 ret = my_read(fd, buffer, block, sc); | |
155 sd->metapos += ret; | |
156 done += ret; | |
157 if (ret != block) // read problems or eof | |
158 size = done; | |
159 | |
160 while (done < size) { // now comes the metadata | |
161 if (sd->is_ultravox) | |
16070 | 162 { |
16013 | 163 sd->metaint = uvox_meta_read(fd, sc); |
16070 | 164 if (!sd->metaint) |
165 size = done; | |
166 } | |
16013 | 167 else |
168 scast_meta_read(fd, sc); // read and display metadata | |
169 sd->metapos = 0; | |
170 block = size - done; | |
171 if (block > sd->metaint) | |
172 block = sd->metaint; | |
173 ret = my_read(fd, &buffer[done], block, sc); | |
174 sd->metapos += ret; | |
175 done += ret; | |
176 if (ret != block) // read problems or eof | |
177 size = done; | |
178 } | |
179 return done; | |
180 } | |
181 | |
182 static int scast_streaming_start(stream_t *stream) { | |
183 int metaint; | |
184 scast_data_t *scast_data; | |
185 HTTP_header_t *http_hdr = stream->streaming_ctrl->data; | |
16070 | 186 int is_ultravox = strcasecmp(stream->streaming_ctrl->url->protocol, "unsv") == 0; |
16013 | 187 if (!stream || stream->fd < 0 || !http_hdr) |
188 return -1; | |
189 if (is_ultravox) | |
190 metaint = 0; | |
191 else { | |
192 metaint = atoi(http_get_field(http_hdr, "Icy-MetaInt")); | |
193 if (metaint <= 0) | |
194 return -1; | |
195 } | |
196 stream->streaming_ctrl->buffer = malloc(http_hdr->body_size); | |
197 stream->streaming_ctrl->buffer_size = http_hdr->body_size; | |
198 stream->streaming_ctrl->buffer_pos = 0; | |
199 memcpy(stream->streaming_ctrl->buffer, http_hdr->body, http_hdr->body_size); | |
200 scast_data = malloc(sizeof(scast_data_t)); | |
201 scast_data->metaint = metaint; | |
202 scast_data->metapos = 0; | |
203 scast_data->is_ultravox = is_ultravox; | |
204 http_free(http_hdr); | |
205 stream->streaming_ctrl->data = scast_data; | |
206 stream->streaming_ctrl->streaming_read = scast_streaming_read; | |
207 stream->streaming_ctrl->streaming_seek = NULL; | |
208 stream->streaming_ctrl->prebuffer_size = 64 * 1024; // 64 KBytes | |
209 stream->streaming_ctrl->buffering = 1; | |
210 stream->streaming_ctrl->status = streaming_playing_e; | |
211 return 0; | |
212 } | |
213 | |
15585 | 214 static int nop_streaming_start( stream_t *stream ) { |
215 HTTP_header_t *http_hdr = NULL; | |
216 char *next_url=NULL; | |
217 URL_t *rd_url=NULL; | |
218 int fd,ret; | |
219 if( stream==NULL ) return -1; | |
220 | |
221 fd = stream->fd; | |
222 if( fd<0 ) { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
223 fd = http_send_request( stream->streaming_ctrl->url, 0 ); |
15585 | 224 if( fd<0 ) return -1; |
225 http_hdr = http_read_response( fd ); | |
226 if( http_hdr==NULL ) return -1; | |
227 | |
228 switch( http_hdr->status_code ) { | |
229 case 200: // OK | |
230 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Type: [%s]\n", http_get_field(http_hdr, "Content-Type") ); | |
231 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Length: [%s]\n", http_get_field(http_hdr, "Content-Length") ); | |
232 if( http_hdr->body_size>0 ) { | |
233 if( streaming_bufferize( stream->streaming_ctrl, http_hdr->body, http_hdr->body_size )<0 ) { | |
234 http_free( http_hdr ); | |
235 return -1; | |
236 } | |
237 } | |
238 break; | |
239 // Redirect | |
240 case 301: // Permanently | |
241 case 302: // Temporarily | |
19459
6dad4b1efb82
Handle 303 (See Other) redirect, part of a patch by Benjamin Zores (ben at geexbox org)
reimar
parents:
19312
diff
changeset
|
242 case 303: // See Other |
15585 | 243 ret=-1; |
244 next_url = http_get_field( http_hdr, "Location" ); | |
245 | |
246 if (next_url != NULL) | |
247 rd_url=url_new(next_url); | |
248 | |
249 if (next_url != NULL && rd_url != NULL) { | |
250 mp_msg(MSGT_NETWORK,MSGL_STATUS,"Redirected: Using this url instead %s\n",next_url); | |
251 stream->streaming_ctrl->url=check4proxies(rd_url); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
252 ret=nop_streaming_start(stream); //recursively get streaming started |
15585 | 253 } else { |
254 mp_msg(MSGT_NETWORK,MSGL_ERR,"Redirection failed\n"); | |
255 closesocket( fd ); | |
256 fd = -1; | |
257 } | |
258 return ret; | |
259 break; | |
260 case 401: //Authorization required | |
261 case 403: //Forbidden | |
262 case 404: //Not found | |
263 case 500: //Server Error | |
264 default: | |
265 mp_msg(MSGT_NETWORK,MSGL_ERR,"Server returned code %d: %s\n", http_hdr->status_code, http_hdr->reason_phrase ); | |
266 closesocket( fd ); | |
267 fd = -1; | |
268 return -1; | |
269 break; | |
270 } | |
271 stream->fd = fd; | |
272 } else { | |
273 http_hdr = (HTTP_header_t*)stream->streaming_ctrl->data; | |
274 if( http_hdr->body_size>0 ) { | |
275 if( streaming_bufferize( stream->streaming_ctrl, http_hdr->body, http_hdr->body_size )<0 ) { | |
276 http_free( http_hdr ); | |
277 stream->streaming_ctrl->data = NULL; | |
278 return -1; | |
279 } | |
280 } | |
281 } | |
282 | |
283 if( http_hdr ) { | |
284 http_free( http_hdr ); | |
285 stream->streaming_ctrl->data = NULL; | |
286 } | |
287 | |
288 stream->streaming_ctrl->streaming_read = nop_streaming_read; | |
289 stream->streaming_ctrl->streaming_seek = nop_streaming_seek; | |
290 stream->streaming_ctrl->prebuffer_size = 64*1024; // 64 KBytes | |
291 stream->streaming_ctrl->buffering = 1; | |
292 stream->streaming_ctrl->status = streaming_playing_e; | |
293 return 0; | |
294 } | |
295 | |
870 | 296 HTTP_header_t * |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
16948
diff
changeset
|
297 http_new_header(void) { |
870 | 298 HTTP_header_t *http_hdr; |
299 | |
18879 | 300 http_hdr = malloc(sizeof(HTTP_header_t)); |
870 | 301 if( http_hdr==NULL ) return NULL; |
302 memset( http_hdr, 0, sizeof(HTTP_header_t) ); | |
303 | |
304 return http_hdr; | |
305 } | |
306 | |
307 void | |
308 http_free( HTTP_header_t *http_hdr ) { | |
3039 | 309 HTTP_field_t *field, *field2free; |
870 | 310 if( http_hdr==NULL ) return; |
311 if( http_hdr->protocol!=NULL ) free( http_hdr->protocol ); | |
312 if( http_hdr->uri!=NULL ) free( http_hdr->uri ); | |
313 if( http_hdr->reason_phrase!=NULL ) free( http_hdr->reason_phrase ); | |
314 if( http_hdr->field_search!=NULL ) free( http_hdr->field_search ); | |
902 | 315 if( http_hdr->method!=NULL ) free( http_hdr->method ); |
316 if( http_hdr->buffer!=NULL ) free( http_hdr->buffer ); | |
3039 | 317 field = http_hdr->first_field; |
318 while( field!=NULL ) { | |
319 field2free = field; | |
14460 | 320 if (field->field_name) |
321 free(field->field_name); | |
3039 | 322 field = field->next; |
323 free( field2free ); | |
324 } | |
870 | 325 free( http_hdr ); |
3039 | 326 http_hdr = NULL; |
870 | 327 } |
328 | |
902 | 329 int |
330 http_response_append( HTTP_header_t *http_hdr, char *response, int length ) { | |
1027 | 331 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
|
332 |
18558
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18094
diff
changeset
|
333 if( (unsigned)length > SIZE_MAX - http_hdr->buffer_size - 1) { |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18094
diff
changeset
|
334 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Bad size in memory (re)allocation\n"); |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18094
diff
changeset
|
335 return -1; |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18094
diff
changeset
|
336 } |
7293 | 337 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
|
338 if( http_hdr->buffer==NULL ) { |
7293 | 339 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory (re)allocation failed\n"); |
902 | 340 return -1; |
341 } | |
7293 | 342 memcpy( http_hdr->buffer+http_hdr->buffer_size, response, length ); |
343 http_hdr->buffer_size += length; | |
344 http_hdr->buffer[http_hdr->buffer_size]=0; // close the string! | |
902 | 345 return http_hdr->buffer_size; |
346 } | |
347 | |
348 int | |
2489
0ecc1b4f7cf8
Added ASF http server streaming (Not mms streaming).
bertrand
parents:
2310
diff
changeset
|
349 http_is_header_entire( HTTP_header_t *http_hdr ) { |
902 | 350 if( http_hdr==NULL ) return -1; |
7293 | 351 if( http_hdr->buffer==NULL ) return 0; // empty |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
352 |
3784 | 353 if( strstr(http_hdr->buffer, "\r\n\r\n")==NULL && |
354 strstr(http_hdr->buffer, "\n\n")==NULL ) return 0; | |
355 return 1; | |
902 | 356 } |
357 | |
358 int | |
359 http_response_parse( HTTP_header_t *http_hdr ) { | |
870 | 360 char *hdr_ptr, *ptr; |
361 char *field=NULL; | |
18558
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18094
diff
changeset
|
362 int pos_hdr_sep, hdr_sep_len; |
4928dd61f136
Fix potential integer overflows in memory allocation.
rtogni
parents:
18094
diff
changeset
|
363 size_t len; |
902 | 364 if( http_hdr==NULL ) return -1; |
365 if( http_hdr->is_parsed ) return 0; | |
870 | 366 |
367 // Get the protocol | |
902 | 368 hdr_ptr = strstr( http_hdr->buffer, " " ); |
870 | 369 if( hdr_ptr==NULL ) { |
5915 | 370 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. No space separator found.\n"); |
902 | 371 return -1; |
870 | 372 } |
902 | 373 len = hdr_ptr-http_hdr->buffer; |
18879 | 374 http_hdr->protocol = malloc(len+1); |
870 | 375 if( http_hdr->protocol==NULL ) { |
5915 | 376 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
902 | 377 return -1; |
870 | 378 } |
902 | 379 strncpy( http_hdr->protocol, http_hdr->buffer, len ); |
380 http_hdr->protocol[len]='\0'; | |
870 | 381 if( !strncasecmp( http_hdr->protocol, "HTTP", 4) ) { |
382 if( sscanf( http_hdr->protocol+5,"1.%d", &(http_hdr->http_minor_version) )!=1 ) { | |
5915 | 383 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. Unable to get HTTP minor version.\n"); |
902 | 384 return -1; |
870 | 385 } |
386 } | |
387 | |
388 // Get the status code | |
389 if( sscanf( ++hdr_ptr, "%d", &(http_hdr->status_code) )!=1 ) { | |
5915 | 390 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. Unable to get status code.\n"); |
902 | 391 return -1; |
870 | 392 } |
393 hdr_ptr += 4; | |
394 | |
395 // Get the reason phrase | |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
396 ptr = strstr( hdr_ptr, "\n" ); |
870 | 397 if( hdr_ptr==NULL ) { |
5915 | 398 mp_msg(MSGT_NETWORK,MSGL_ERR,"Malformed answer. Unable to get the reason phrase.\n"); |
902 | 399 return -1; |
870 | 400 } |
401 len = ptr-hdr_ptr; | |
18879 | 402 http_hdr->reason_phrase = malloc(len+1); |
870 | 403 if( http_hdr->reason_phrase==NULL ) { |
5915 | 404 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
902 | 405 return -1; |
870 | 406 } |
407 strncpy( http_hdr->reason_phrase, hdr_ptr, len ); | |
4311 | 408 if( http_hdr->reason_phrase[len-1]=='\r' ) { |
409 len--; | |
410 } | |
870 | 411 http_hdr->reason_phrase[len]='\0'; |
412 | |
413 // 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
|
414 hdr_sep_len = 4; |
902 | 415 ptr = strstr( http_hdr->buffer, "\r\n\r\n" ); |
870 | 416 if( ptr==NULL ) { |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
417 ptr = strstr( http_hdr->buffer, "\n\n" ); |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
418 if( ptr==NULL ) { |
5915 | 419 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
|
420 return -1; |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
421 } |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
422 hdr_sep_len = 2; |
870 | 423 } |
902 | 424 pos_hdr_sep = ptr-http_hdr->buffer; |
870 | 425 |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
426 // 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
|
427 hdr_ptr = strstr( http_hdr->buffer, "\n" )+1; |
870 | 428 do { |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
429 ptr = hdr_ptr; |
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
430 while( *ptr!='\r' && *ptr!='\n' ) ptr++; |
870 | 431 len = ptr-hdr_ptr; |
4816
f1dea39a50bb
Fixed the http response parser when the http header only has the HTTP
bertrand
parents:
4311
diff
changeset
|
432 if( len==0 ) break; |
870 | 433 field = (char*)realloc(field, len+1); |
434 if( field==NULL ) { | |
5915 | 435 mp_msg(MSGT_NETWORK,MSGL_ERR,"Memory allocation failed\n"); |
902 | 436 return -1; |
870 | 437 } |
438 strncpy( field, hdr_ptr, len ); | |
439 field[len]='\0'; | |
440 http_set_field( http_hdr, field ); | |
3514
43518985def8
Handle broken server that doesn't send CRLF but jusr LF.
bertrand
parents:
3497
diff
changeset
|
441 hdr_ptr = ptr+((*ptr=='\r')?2:1); |
902 | 442 } while( hdr_ptr<(http_hdr->buffer+pos_hdr_sep) ); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
443 |
870 | 444 if( field!=NULL ) free( field ); |
445 | |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
446 if( pos_hdr_sep+hdr_sep_len<http_hdr->buffer_size ) { |
870 | 447 // Response has data! |
8179
63a5e03f4346
Removed hard coded value for the length of the header separator.
bertrand
parents:
7304
diff
changeset
|
448 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
|
449 http_hdr->body_size = http_hdr->buffer_size-(pos_hdr_sep+hdr_sep_len); |
870 | 450 } |
451 | |
902 | 452 http_hdr->is_parsed = 1; |
453 return 0; | |
870 | 454 } |
455 | |
456 char * | |
902 | 457 http_build_request( HTTP_header_t *http_hdr ) { |
3497 | 458 char *ptr, *uri=NULL; |
902 | 459 int len; |
3039 | 460 HTTP_field_t *field; |
870 | 461 if( http_hdr==NULL ) return NULL; |
462 | |
463 if( http_hdr->method==NULL ) http_set_method( http_hdr, "GET"); | |
464 if( http_hdr->uri==NULL ) http_set_uri( http_hdr, "/"); | |
3497 | 465 else { |
18879 | 466 uri = malloc(strlen(http_hdr->uri) + 1); |
3497 | 467 if( uri==NULL ) { |
5915 | 468 mp_msg(MSGT_NETWORK,MSGL_ERR,"Memory allocation failed\n"); |
3497 | 469 return NULL; |
470 } | |
12391 | 471 strcpy(uri,http_hdr->uri); |
3497 | 472 } |
870 | 473 |
3497 | 474 //**** Compute the request length |
475 // Add the Method line | |
476 len = strlen(http_hdr->method)+strlen(uri)+12; | |
477 // Add the fields | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
478 field = http_hdr->first_field; |
3039 | 479 while( field!=NULL ) { |
480 len += strlen(field->field_name)+2; | |
481 field = field->next; | |
482 } | |
3497 | 483 // Add the CRLF |
484 len += 2; | |
485 // Add the body | |
902 | 486 if( http_hdr->body!=NULL ) { |
487 len += http_hdr->body_size; | |
488 } | |
3497 | 489 // Free the buffer if it was previously used |
902 | 490 if( http_hdr->buffer!=NULL ) { |
491 free( http_hdr->buffer ); | |
492 http_hdr->buffer = NULL; | |
493 } | |
18879 | 494 http_hdr->buffer = malloc(len+1); |
902 | 495 if( http_hdr->buffer==NULL ) { |
5915 | 496 mp_msg(MSGT_NETWORK,MSGL_ERR,"Memory allocation failed\n"); |
902 | 497 return NULL; |
498 } | |
499 http_hdr->buffer_size = len; | |
500 | |
3497 | 501 //*** Building the request |
902 | 502 ptr = http_hdr->buffer; |
3497 | 503 // Add the method line |
504 ptr += sprintf( ptr, "%s %s HTTP/1.%d\r\n", http_hdr->method, uri, http_hdr->http_minor_version ); | |
3039 | 505 field = http_hdr->first_field; |
3497 | 506 // Add the field |
3039 | 507 while( field!=NULL ) { |
508 ptr += sprintf( ptr, "%s\r\n", field->field_name ); | |
509 field = field->next; | |
510 } | |
870 | 511 ptr += sprintf( ptr, "\r\n" ); |
3497 | 512 // Add the body |
870 | 513 if( http_hdr->body!=NULL ) { |
514 memcpy( ptr, http_hdr->body, http_hdr->body_size ); | |
515 } | |
3497 | 516 |
517 if( uri ) free( uri ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
518 return http_hdr->buffer; |
870 | 519 } |
520 | |
521 char * | |
522 http_get_field( HTTP_header_t *http_hdr, const char *field_name ) { | |
523 if( http_hdr==NULL || field_name==NULL ) return NULL; | |
3039 | 524 http_hdr->field_search_pos = http_hdr->first_field; |
525 http_hdr->field_search = (char*)realloc( http_hdr->field_search, strlen(field_name)+1 ); | |
870 | 526 if( http_hdr->field_search==NULL ) { |
5915 | 527 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 528 return NULL; |
529 } | |
530 strcpy( http_hdr->field_search, field_name ); | |
531 return http_get_next_field( http_hdr ); | |
532 } | |
533 | |
534 char * | |
535 http_get_next_field( HTTP_header_t *http_hdr ) { | |
536 char *ptr; | |
3039 | 537 HTTP_field_t *field; |
870 | 538 if( http_hdr==NULL ) return NULL; |
539 | |
3039 | 540 field = http_hdr->field_search_pos; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
541 while( field!=NULL ) { |
3039 | 542 ptr = strstr( field->field_name, ":" ); |
870 | 543 if( ptr==NULL ) return NULL; |
3039 | 544 if( !strncasecmp( field->field_name, http_hdr->field_search, ptr-(field->field_name) ) ) { |
870 | 545 ptr++; // Skip the column |
546 while( ptr[0]==' ' ) ptr++; // Skip the spaces if there is some | |
3039 | 547 http_hdr->field_search_pos = field->next; |
870 | 548 return ptr; // return the value without the field name |
549 } | |
3039 | 550 field = field->next; |
870 | 551 } |
552 return NULL; | |
553 } | |
554 | |
555 void | |
3039 | 556 http_set_field( HTTP_header_t *http_hdr, const char *field_name ) { |
557 HTTP_field_t *new_field; | |
558 if( http_hdr==NULL || field_name==NULL ) return; | |
870 | 559 |
18879 | 560 new_field = malloc(sizeof(HTTP_field_t)); |
3039 | 561 if( new_field==NULL ) { |
5915 | 562 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 563 return; |
564 } | |
3039 | 565 new_field->next = NULL; |
18879 | 566 new_field->field_name = malloc(strlen(field_name)+1); |
3039 | 567 if( new_field->field_name==NULL ) { |
5915 | 568 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
27834
d35bcab9833b
Avoid a memleak if allocation of field_name fails, fixes bug #1319.
reimar
parents:
27473
diff
changeset
|
569 free(new_field); |
3039 | 570 return; |
571 } | |
572 strcpy( new_field->field_name, field_name ); | |
573 | |
574 if( http_hdr->last_field==NULL ) { | |
575 http_hdr->first_field = new_field; | |
576 } else { | |
577 http_hdr->last_field->next = new_field; | |
578 } | |
579 http_hdr->last_field = new_field; | |
870 | 580 http_hdr->field_nb++; |
581 } | |
582 | |
583 void | |
584 http_set_method( HTTP_header_t *http_hdr, const char *method ) { | |
585 if( http_hdr==NULL || method==NULL ) return; | |
586 | |
18879 | 587 http_hdr->method = malloc(strlen(method)+1); |
870 | 588 if( http_hdr->method==NULL ) { |
5915 | 589 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 590 return; |
591 } | |
592 strcpy( http_hdr->method, method ); | |
593 } | |
594 | |
595 void | |
596 http_set_uri( HTTP_header_t *http_hdr, const char *uri ) { | |
597 if( http_hdr==NULL || uri==NULL ) return; | |
598 | |
18879 | 599 http_hdr->uri = malloc(strlen(uri)+1); |
870 | 600 if( http_hdr->uri==NULL ) { |
5915 | 601 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); |
870 | 602 return; |
603 } | |
604 strcpy( http_hdr->uri, uri ); | |
605 } | |
606 | |
6514 | 607 int |
608 http_add_basic_authentication( HTTP_header_t *http_hdr, const char *username, const char *password ) { | |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
609 char *auth = NULL, *usr_pass = NULL, *b64_usr_pass = NULL; |
6514 | 610 int encoded_len, pass_len=0, out_len; |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
611 int res = -1; |
6514 | 612 if( http_hdr==NULL || username==NULL ) return -1; |
613 | |
614 if( password!=NULL ) { | |
615 pass_len = strlen(password); | |
616 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
617 |
18879 | 618 usr_pass = malloc(strlen(username)+pass_len+2); |
6514 | 619 if( usr_pass==NULL ) { |
620 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); | |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
621 goto out; |
6514 | 622 } |
623 | |
624 sprintf( usr_pass, "%s:%s", username, (password==NULL)?"":password ); | |
625 | |
626 // Base 64 encode with at least 33% more data than the original size | |
627 encoded_len = strlen(usr_pass)*2; | |
18879 | 628 b64_usr_pass = malloc(encoded_len); |
6514 | 629 if( b64_usr_pass==NULL ) { |
630 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); | |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
631 goto out; |
6514 | 632 } |
633 | |
634 out_len = base64_encode( usr_pass, strlen(usr_pass), b64_usr_pass, encoded_len); | |
635 if( out_len<0 ) { | |
636 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Base64 out overflow\n"); | |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
637 goto out; |
6514 | 638 } |
639 | |
640 b64_usr_pass[out_len]='\0'; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
641 |
18879 | 642 auth = malloc(encoded_len+22); |
6514 | 643 if( auth==NULL ) { |
644 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed\n"); | |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
645 goto out; |
6514 | 646 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
647 |
6514 | 648 sprintf( auth, "Authorization: Basic %s", b64_usr_pass); |
649 http_set_field( http_hdr, auth ); | |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
650 res = 0; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
651 |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
652 out: |
6514 | 653 free( usr_pass ); |
654 free( b64_usr_pass ); | |
655 free( auth ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
656 |
18094
16f2bcd5d148
free memory on error in http_add_basic_authentication
reimar
parents:
17932
diff
changeset
|
657 return res; |
6514 | 658 } |
659 | |
870 | 660 void |
661 http_debug_hdr( HTTP_header_t *http_hdr ) { | |
3039 | 662 HTTP_field_t *field; |
663 int i = 0; | |
902 | 664 if( http_hdr==NULL ) return; |
870 | 665 |
5915 | 666 mp_msg(MSGT_NETWORK,MSGL_V,"--- HTTP DEBUG HEADER --- START ---\n"); |
667 mp_msg(MSGT_NETWORK,MSGL_V,"protocol: [%s]\n", http_hdr->protocol ); | |
668 mp_msg(MSGT_NETWORK,MSGL_V,"http minor version: [%d]\n", http_hdr->http_minor_version ); | |
669 mp_msg(MSGT_NETWORK,MSGL_V,"uri: [%s]\n", http_hdr->uri ); | |
670 mp_msg(MSGT_NETWORK,MSGL_V,"method: [%s]\n", http_hdr->method ); | |
671 mp_msg(MSGT_NETWORK,MSGL_V,"status code: [%d]\n", http_hdr->status_code ); | |
672 mp_msg(MSGT_NETWORK,MSGL_V,"reason phrase: [%s]\n", http_hdr->reason_phrase ); | |
673 mp_msg(MSGT_NETWORK,MSGL_V,"body size: [%d]\n", http_hdr->body_size ); | |
870 | 674 |
5915 | 675 mp_msg(MSGT_NETWORK,MSGL_V,"Fields:\n"); |
3039 | 676 field = http_hdr->first_field; |
677 while( field!=NULL ) { | |
5915 | 678 mp_msg(MSGT_NETWORK,MSGL_V," %d - %s\n", i++, field->field_name ); |
3039 | 679 field = field->next; |
680 } | |
5915 | 681 mp_msg(MSGT_NETWORK,MSGL_V,"--- HTTP DEBUG HEADER --- END ---\n"); |
870 | 682 } |
6514 | 683 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
684 int |
6514 | 685 base64_encode(const void *enc, int encLen, char *out, int outMax) { |
17778
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
686 static const char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |
6514 | 687 |
688 unsigned char *encBuf; | |
689 int outLen; | |
690 unsigned int bits; | |
691 unsigned int shift; | |
692 | |
693 encBuf = (unsigned char*)enc; | |
694 outLen = 0; | |
695 bits = 0; | |
696 shift = 0; | |
17778
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
697 outMax &= ~3; |
6514 | 698 |
22031 | 699 while(1) { |
6514 | 700 if( encLen>0 ) { |
701 // Shift in byte | |
702 bits <<= 8; | |
703 bits |= *encBuf; | |
704 shift += 8; | |
705 // Next byte | |
706 encBuf++; | |
707 encLen--; | |
708 } else if( shift>0 ) { | |
709 // Pad last bits to 6 bits - will end next loop | |
710 bits <<= 6 - shift; | |
711 shift = 6; | |
712 } else { | |
17778
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
713 // As per RFC 2045, section 6.8, |
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
714 // pad output as necessary: 0 to 2 '=' chars. |
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
715 while( outLen & 3 ){ |
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
716 *out++ = '='; |
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
717 outLen++; |
37bfcf89c89c
Fix base64 encoding for basic auth according to RFC.
reimar
parents:
17566
diff
changeset
|
718 } |
6514 | 719 |
720 return outLen; | |
721 } | |
722 | |
723 // Encode 6 bit segments | |
724 while( shift>=6 ) { | |
22031 | 725 if (outLen >= outMax) |
726 return -1; | |
6514 | 727 shift -= 6; |
728 *out = b64[ (bits >> shift) & 0x3F ]; | |
729 out++; | |
730 outLen++; | |
731 } | |
732 } | |
733 } | |
734 | |
25970
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
735 static void print_icy_metadata(HTTP_header_t *http_hdr) { |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
736 const char *field_data; |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
737 // note: I skip icy-notice1 and 2, as they contain html <BR> |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
738 // and are IMHO useless info ::atmos |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
739 if( (field_data = http_get_field(http_hdr, "icy-name")) != NULL ) |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
740 mp_msg(MSGT_NETWORK,MSGL_INFO,"Name : %s\n", field_data); |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
741 if( (field_data = http_get_field(http_hdr, "icy-genre")) != NULL ) |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
742 mp_msg(MSGT_NETWORK,MSGL_INFO,"Genre : %s\n", field_data); |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
743 if( (field_data = http_get_field(http_hdr, "icy-url")) != NULL ) |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
744 mp_msg(MSGT_NETWORK,MSGL_INFO,"Website: %s\n", field_data); |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
745 // XXX: does this really mean public server? ::atmos |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
746 if( (field_data = http_get_field(http_hdr, "icy-pub")) != NULL ) |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
747 mp_msg(MSGT_NETWORK,MSGL_INFO,"Public : %s\n", atoi(field_data)?"yes":"no"); |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
748 if( (field_data = http_get_field(http_hdr, "icy-br")) != NULL ) |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
749 mp_msg(MSGT_NETWORK,MSGL_INFO,"Bitrate: %skbit/s\n", field_data); |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
750 } |
c6ec51cc3b13
Move printing of Icy-Metadata into an extra function
reimar
parents:
25969
diff
changeset
|
751 |
21567 | 752 //! If this function succeeds you must closesocket stream->fd |
15585 | 753 static int http_streaming_start(stream_t *stream, int* file_format) { |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
754 HTTP_header_t *http_hdr = NULL; |
15585 | 755 unsigned int i; |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
756 int fd = stream->fd; |
25135
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
757 int res = STREAM_UNSUPPORTED; |
15585 | 758 int redirect = 0; |
759 int auth_retry=0; | |
760 int seekable=0; | |
761 char *content_type; | |
30357
3fdf04500df2
Handle Content-Length also when Content-Type is not set.
reimar
parents:
30356
diff
changeset
|
762 const char *content_length; |
15585 | 763 char *next_url; |
764 URL_t *url = stream->streaming_ctrl->url; | |
6514 | 765 |
15585 | 766 do |
767 { | |
21541
3b4ed8857b38
Fix potential endless loop in http_streaming_start due
reimar
parents:
21540
diff
changeset
|
768 redirect = 0; |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
769 if (fd > 0) closesocket(fd); |
15585 | 770 fd = http_send_request( url, 0 ); |
771 if( fd<0 ) { | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
772 goto err_out; |
15585 | 773 } |
774 | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
775 http_free(http_hdr); |
15585 | 776 http_hdr = http_read_response( fd ); |
777 if( http_hdr==NULL ) { | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
778 goto err_out; |
15585 | 779 } |
780 | |
17932 | 781 if( mp_msg_test(MSGT_NETWORK,MSGL_V) ) { |
15585 | 782 http_debug_hdr( http_hdr ); |
783 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
784 |
15585 | 785 // Check if we can make partial content requests and thus seek in http-streams |
786 if( http_hdr!=NULL && http_hdr->status_code==200 ) { | |
30106 | 787 const char *accept_ranges = http_get_field(http_hdr,"Accept-Ranges"); |
30105
31b7d4637b50
Fix crash if http reply contains neither "Accept-Ranges" nor "Server" fields.
reimar
parents:
30103
diff
changeset
|
788 const char *server = http_get_field(http_hdr, "Server"); |
30106 | 789 if (accept_ranges) |
15585 | 790 seekable = strncmp(accept_ranges,"bytes",5)==0; |
30105
31b7d4637b50
Fix crash if http reply contains neither "Accept-Ranges" nor "Server" fields.
reimar
parents:
30103
diff
changeset
|
791 else if (server && strcmp(server, "gvs 1.0") == 0) |
30103
f7af93ece976
Add a hack for broken youtube servers not returning Accept-Ranges.
reimar
parents:
29920
diff
changeset
|
792 seekable = 1; // HACK for youtube incorrectly claiming not to support seeking |
15585 | 793 } |
794 | |
25971
64b1e4ea04fc
Always display Icy-Metadata if available, whether we recognize an ICY-Server
reimar
parents:
25970
diff
changeset
|
795 print_icy_metadata(http_hdr); |
64b1e4ea04fc
Always display Icy-Metadata if available, whether we recognize an ICY-Server
reimar
parents:
25970
diff
changeset
|
796 |
15585 | 797 // Check if the response is an ICY status_code reason_phrase |
25968
c7f41f9e2eb8
Detect IceCast also by Icy-MetaInt header part in http_streaming_start(),
reimar
parents:
25246
diff
changeset
|
798 if( !strcasecmp(http_hdr->protocol, "ICY") || |
c7f41f9e2eb8
Detect IceCast also by Icy-MetaInt header part in http_streaming_start(),
reimar
parents:
25246
diff
changeset
|
799 http_get_field(http_hdr, "Icy-MetaInt") ) { |
15585 | 800 switch( http_hdr->status_code ) { |
801 case 200: { // OK | |
25969 | 802 char *field_data; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
803 // If content-type == video/nsv we most likely have a winamp video stream |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
804 // otherwise it should be mp3. if there are more types consider adding mime type |
15585 | 805 // handling like later |
806 if ( (field_data = http_get_field(http_hdr, "content-type")) != NULL && (!strcmp(field_data, "video/nsv") || !strcmp(field_data, "misc/ultravox"))) | |
807 *file_format = DEMUXER_TYPE_NSV; | |
16948
9b7925705f5b
Add another content-type for aac audio in shoutcast streams
rtognimp
parents:
16932
diff
changeset
|
808 else if ( (field_data = http_get_field(http_hdr, "content-type")) != NULL && (!strcmp(field_data, "audio/aacp") || !strcmp(field_data, "audio/aac"))) |
16917
c45409728a9d
Use correct demuxer type for aac in shoutcast streams
rtognimp
parents:
16614
diff
changeset
|
809 *file_format = DEMUXER_TYPE_AAC; |
15585 | 810 else |
811 *file_format = DEMUXER_TYPE_AUDIO; | |
25135
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
812 res = STREAM_ERROR; |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
813 goto out; |
15585 | 814 } |
815 case 400: // Server Full | |
816 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server is full, skipping!\n"); | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
817 goto err_out; |
15585 | 818 case 401: // Service Unavailable |
819 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server return service unavailable, skipping!\n"); | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
820 goto err_out; |
15585 | 821 case 403: // Service Forbidden |
822 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server return 'Service Forbidden'\n"); | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
823 goto err_out; |
15585 | 824 case 404: // Resource Not Found |
825 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server couldn't find requested stream, skipping!\n"); | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
826 goto err_out; |
15585 | 827 default: |
828 mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: unhandled ICY-Errorcode, contact MPlayer developers!\n"); | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
829 goto err_out; |
15585 | 830 } |
831 } | |
832 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
833 // Assume standard http if not ICY |
15585 | 834 switch( http_hdr->status_code ) { |
835 case 200: // OK | |
30357
3fdf04500df2
Handle Content-Length also when Content-Type is not set.
reimar
parents:
30356
diff
changeset
|
836 content_length = http_get_field(http_hdr, "Content-Length"); |
3fdf04500df2
Handle Content-Length also when Content-Type is not set.
reimar
parents:
30356
diff
changeset
|
837 if (content_length) { |
3fdf04500df2
Handle Content-Length also when Content-Type is not set.
reimar
parents:
30356
diff
changeset
|
838 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Length: [%s]\n", content_length); |
3fdf04500df2
Handle Content-Length also when Content-Type is not set.
reimar
parents:
30356
diff
changeset
|
839 stream->end_pos = atoll(content_length); |
3fdf04500df2
Handle Content-Length also when Content-Type is not set.
reimar
parents:
30356
diff
changeset
|
840 } |
15585 | 841 // Look if we can use the Content-Type |
842 content_type = http_get_field( http_hdr, "Content-Type" ); | |
843 if( content_type!=NULL ) { | |
844 mp_msg(MSGT_NETWORK,MSGL_V,"Content-Type: [%s]\n", content_type ); | |
845 // Check in the mime type table for a demuxer type | |
846 i = 0; | |
847 while(mime_type_table[i].mime_type != NULL) { | |
848 if( !strcasecmp( content_type, mime_type_table[i].mime_type ) ) { | |
849 *file_format = mime_type_table[i].demuxer_type; | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
850 res = seekable; |
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
851 goto out; |
15585 | 852 } |
853 i++; | |
854 } | |
855 } | |
856 // Not found in the mime type table, don't fail, | |
857 // we should try raw HTTP | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
858 res = seekable; |
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
859 goto out; |
15585 | 860 // Redirect |
861 case 301: // Permanently | |
862 case 302: // Temporarily | |
19459
6dad4b1efb82
Handle 303 (See Other) redirect, part of a patch by Benjamin Zores (ben at geexbox org)
reimar
parents:
19312
diff
changeset
|
863 case 303: // See Other |
15585 | 864 // TODO: RFC 2616, recommand to detect infinite redirection loops |
865 next_url = http_get_field( http_hdr, "Location" ); | |
866 if( next_url!=NULL ) { | |
25238
f42b8e689416
Preserve unsv:// protocol specifier over http redirects.
reimar
parents:
25211
diff
changeset
|
867 int is_ultravox = strcasecmp(stream->streaming_ctrl->url->protocol, "unsv") == 0; |
20784
720206eef78b
Support URL redirections that do not specify full URL.
reimar
parents:
20185
diff
changeset
|
868 stream->streaming_ctrl->url = url_redirect( &url, next_url ); |
25135
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
869 if (!strcasecmp(url->protocol, "mms")) { |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
870 res = STREAM_REDIRECTED; |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
871 goto err_out; |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
872 } |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
873 if (strcasecmp(url->protocol, "http")) { |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
874 mp_msg(MSGT_NETWORK,MSGL_ERR,"Unsupported http %d redirect to %s protocol\n", http_hdr->status_code, url->protocol); |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
875 goto err_out; |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
876 } |
25238
f42b8e689416
Preserve unsv:// protocol specifier over http redirects.
reimar
parents:
25211
diff
changeset
|
877 if (is_ultravox) { |
f42b8e689416
Preserve unsv:// protocol specifier over http redirects.
reimar
parents:
25211
diff
changeset
|
878 free(url->protocol); |
f42b8e689416
Preserve unsv:// protocol specifier over http redirects.
reimar
parents:
25211
diff
changeset
|
879 url->protocol = strdup("unsv"); |
f42b8e689416
Preserve unsv:// protocol specifier over http redirects.
reimar
parents:
25211
diff
changeset
|
880 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
881 redirect = 1; |
15585 | 882 } |
883 break; | |
884 case 401: // Authentication required | |
21566
79d969f9eec0
STREAM_UNSUPPORTED is -1, so use the former for return value in all places.
reimar
parents:
21565
diff
changeset
|
885 if( http_authenticate(http_hdr, url, &auth_retry)<0 ) |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
886 goto err_out; |
15585 | 887 redirect = 1; |
888 break; | |
889 default: | |
890 mp_msg(MSGT_NETWORK,MSGL_ERR,"Server returned %d: %s\n", http_hdr->status_code, http_hdr->reason_phrase ); | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
891 goto err_out; |
15585 | 892 } |
893 } while( redirect ); | |
894 | |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
895 err_out: |
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
896 if (fd > 0) closesocket( fd ); |
21565
546cf4a6377a
Make sure stream->fd is set correct (esp. to -1 on error when fd is closed)
reimar
parents:
21542
diff
changeset
|
897 fd = -1; |
21542 | 898 http_free( http_hdr ); |
21776 | 899 http_hdr = NULL; |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
900 out: |
21776 | 901 stream->streaming_ctrl->data = (void*)http_hdr; |
21565
546cf4a6377a
Make sure stream->fd is set correct (esp. to -1 on error when fd is closed)
reimar
parents:
21542
diff
changeset
|
902 stream->fd = fd; |
21540
147c1c305f21
Fix lots and lots of potential memory/fd leaks in http_streaming_start
reimar
parents:
20784
diff
changeset
|
903 return res; |
15585 | 904 } |
905 | |
906 static int fixup_open(stream_t *stream,int seekable) { | |
16013 | 907 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
|
908 int is_icy = http_hdr && http_get_field(http_hdr, "Icy-MetaInt"); |
16070 | 909 int is_ultravox = strcasecmp(stream->streaming_ctrl->url->protocol, "unsv") == 0; |
15585 | 910 |
911 stream->type = STREAMTYPE_STREAM; | |
16013 | 912 if(!is_icy && !is_ultravox && seekable) |
15585 | 913 { |
29920
4f740437ed2b
Finally rename the STREAM_SEEK define to MP_STREAM_SEEK, there are just too many
reimar
parents:
29263
diff
changeset
|
914 stream->flags |= MP_STREAM_SEEK; |
15585 | 915 stream->seek = http_seek; |
916 } | |
917 stream->streaming_ctrl->bandwidth = network_bandwidth; | |
16013 | 918 if ((!is_icy && !is_ultravox) || scast_streaming_start(stream)) |
15585 | 919 if(nop_streaming_start( stream )) { |
920 mp_msg(MSGT_NETWORK,MSGL_ERR,"nop_streaming_start failed\n"); | |
21567 | 921 if (stream->fd >= 0) |
922 closesocket(stream->fd); | |
923 stream->fd = -1; | |
15585 | 924 streaming_ctrl_free(stream->streaming_ctrl); |
925 stream->streaming_ctrl = NULL; | |
24257 | 926 return STREAM_UNSUPPORTED; |
15585 | 927 } |
928 | |
929 fixup_network_stream_cache(stream); | |
930 return STREAM_OK; | |
931 } | |
932 | |
933 static int open_s1(stream_t *stream,int mode, void* opts, int* file_format) { | |
934 int seekable=0; | |
935 URL_t *url; | |
936 | |
937 stream->streaming_ctrl = streaming_ctrl_new(); | |
938 if( stream->streaming_ctrl==NULL ) { | |
939 return STREAM_ERROR; | |
940 } | |
941 stream->streaming_ctrl->bandwidth = network_bandwidth; | |
942 url = url_new(stream->url); | |
943 stream->streaming_ctrl->url = check4proxies(url); | |
16417 | 944 url_free(url); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
945 |
20185 | 946 mp_msg(MSGT_OPEN, MSGL_V, "STREAM_HTTP(1), URL: %s\n", stream->url); |
15585 | 947 seekable = http_streaming_start(stream, file_format); |
948 if((seekable < 0) || (*file_format == DEMUXER_TYPE_ASF)) { | |
21567 | 949 if (stream->fd >= 0) |
950 closesocket(stream->fd); | |
951 stream->fd = -1; | |
25135
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
952 if (seekable == STREAM_REDIRECTED) |
66f628d13442
Support stream redirection from http to mms, fix bug #927.
ulion
parents:
24257
diff
changeset
|
953 return seekable; |
15585 | 954 streaming_ctrl_free(stream->streaming_ctrl); |
955 stream->streaming_ctrl = NULL; | |
24257 | 956 return STREAM_UNSUPPORTED; |
15585 | 957 } |
958 | |
959 return fixup_open(stream, seekable); | |
960 } | |
961 | |
962 static int open_s2(stream_t *stream,int mode, void* opts, int* file_format) { | |
963 int seekable=0; | |
964 URL_t *url; | |
965 | |
966 stream->streaming_ctrl = streaming_ctrl_new(); | |
967 if( stream->streaming_ctrl==NULL ) { | |
968 return STREAM_ERROR; | |
969 } | |
970 stream->streaming_ctrl->bandwidth = network_bandwidth; | |
971 url = url_new(stream->url); | |
972 stream->streaming_ctrl->url = check4proxies(url); | |
16614 | 973 url_free(url); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28402
diff
changeset
|
974 |
20185 | 975 mp_msg(MSGT_OPEN, MSGL_V, "STREAM_HTTP(2), URL: %s\n", stream->url); |
15585 | 976 seekable = http_streaming_start(stream, file_format); |
977 if(seekable < 0) { | |
21567 | 978 if (stream->fd >= 0) |
979 closesocket(stream->fd); | |
980 stream->fd = -1; | |
15585 | 981 streaming_ctrl_free(stream->streaming_ctrl); |
982 stream->streaming_ctrl = NULL; | |
24257 | 983 return STREAM_UNSUPPORTED; |
15585 | 984 } |
985 | |
986 return fixup_open(stream, seekable); | |
987 } | |
988 | |
989 | |
25211 | 990 const stream_info_t stream_info_http1 = { |
15585 | 991 "http streaming", |
992 "null", | |
993 "Bertrand, Albeau, Reimar Doeffinger, Arpi?", | |
994 "plain http", | |
995 open_s1, | |
27847
28deb37052cd
Add a noicyx:// protocol to allow easier testing for misconfigured servers.
reimar
parents:
27834
diff
changeset
|
996 {"http", "http_proxy", "unsv", "icyx", "noicyx", NULL}, |
15585 | 997 NULL, |
998 0 // Urls are an option string | |
999 }; | |
1000 | |
25211 | 1001 const stream_info_t stream_info_http2 = { |
15585 | 1002 "http streaming", |
1003 "null", | |
1004 "Bertrand, Albeu, Arpi? who?", | |
16932
c30e0970250c
fix typos: aslo->also, falback->fallback (they were just too annoying *g*)
reimar
parents:
16917
diff
changeset
|
1005 "plain http, also used as fallback for many other protocols", |
15585 | 1006 open_s2, |
1007 {"http", "http_proxy", "pnm", "mms", "mmsu", "mmst", "rtsp", NULL}, //all the others as fallback | |
1008 NULL, | |
1009 0 // Urls are an option string | |
1010 }; |