ffmpeg_files/taglists.c: update to latest FFmpeg values (r25209)
[mplayer/glamo.git] / stream / librtsp / rtsp.c
blob82669616acc0b5805106a3163e73b79959292b7a
1 /*
2 * This file was ported to MPlayer from xine CVS rtsp.c,v 1.9 2003/04/10 02:30:48
3 */
5 /*
6 * Copyright (C) 2000-2002 the xine project
8 * This file is part of xine, a free video player.
10 * xine is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * xine is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
25 * a minimalistic implementation of rtsp protocol,
26 * *not* RFC 2326 compilant yet.
28 * 2006, Benjamin Zores and Vincent Mussard
29 * fixed a lot of RFC compliance issues.
32 #include <unistd.h>
33 #include <stdio.h>
34 #include <assert.h>
35 #include "config.h"
36 #include <string.h>
37 #include <sys/stat.h>
38 #include <fcntl.h>
39 #include <errno.h>
40 #include <stdlib.h>
41 #include <time.h>
42 #include <sys/time.h>
43 #include <sys/types.h>
44 #include <inttypes.h>
45 #if HAVE_WINSOCK2_H
46 #include <winsock2.h>
47 #else
48 #include <sys/socket.h>
49 #endif
50 #include "mp_msg.h"
51 #include "rtsp.h"
52 #include "rtsp_session.h"
53 #include "osdep/timer.h"
54 #include "stream/network.h"
57 #define LOG
61 * network utilities
64 static int write_stream(int s, const char *buf, int len) {
65 int total, timeout;
67 total = 0; timeout = 30;
68 while (total < len){
69 int n;
71 n = send (s, &buf[total], len - total, DEFAULT_SEND_FLAGS);
73 if (n > 0)
74 total += n;
75 else if (n < 0) {
76 #if !HAVE_WINSOCK2_H
77 if ((timeout>0) && ((errno == EAGAIN) || (errno == EINPROGRESS))) {
78 #else
79 if ((timeout>0) && ((errno == EAGAIN) || (WSAGetLastError() == WSAEINPROGRESS))) {
80 #endif
81 usec_sleep (1000000); timeout--;
82 } else
83 return -1;
87 return total;
90 static ssize_t read_stream(int fd, void *buf, size_t count) {
92 ssize_t ret, total;
94 total = 0;
96 while (total < count) {
98 ret=recv (fd, ((uint8_t*)buf)+total, count-total, 0);
100 if (ret<0) {
101 if(errno == EAGAIN) {
102 fd_set rset;
103 struct timeval timeout;
105 FD_ZERO (&rset);
106 FD_SET (fd, &rset);
108 timeout.tv_sec = 30;
109 timeout.tv_usec = 0;
111 if (select (fd+1, &rset, NULL, NULL, &timeout) <= 0) {
112 return -1;
114 continue;
117 mp_msg(MSGT_OPEN, MSGL_ERR, "rtsp: read error.\n");
118 return ret;
119 } else
120 total += ret;
122 /* end of stream */
123 if (!ret) break;
126 return total;
130 * rtsp_get gets a line from stream
131 * and returns a null terminated string.
134 static char *rtsp_get(rtsp_t *s) {
136 int n=1;
137 char *buffer = malloc(BUF_SIZE);
138 char *string = NULL;
140 read_stream(s->s, buffer, 1);
141 while (n<BUF_SIZE) {
142 read_stream(s->s, &(buffer[n]), 1);
143 if ((buffer[n-1]==0x0d)&&(buffer[n]==0x0a)) break;
144 n++;
147 if (n>=BUF_SIZE) {
148 mp_msg(MSGT_OPEN, MSGL_FATAL, "librtsp: buffer overflow in rtsp_get\n");
149 exit(1);
151 string=malloc(n);
152 memcpy(string,buffer,n-1);
153 string[n-1]=0;
155 #ifdef LOG
156 mp_msg(MSGT_OPEN, MSGL_INFO, "librtsp: << '%s'\n", string);
157 #endif
160 free(buffer);
161 return string;
165 * rtsp_put puts a line on stream
168 static void rtsp_put(rtsp_t *s, const char *string) {
170 int len=strlen(string);
171 char *buf=malloc(len+2);
173 #ifdef LOG
174 mp_msg(MSGT_OPEN, MSGL_INFO, "librtsp: >> '%s'", string);
175 #endif
177 memcpy(buf,string,len);
178 buf[len]=0x0d;
179 buf[len+1]=0x0a;
181 write_stream(s->s, buf, len+2);
183 #ifdef LOG
184 mp_msg(MSGT_OPEN, MSGL_INFO, " done.\n");
185 #endif
187 free(buf);
191 * extract server status code
194 static int rtsp_get_code(const char *string) {
196 char buf[4];
197 int code=0;
199 if (!strncmp(string, RTSP_PROTOCOL_VERSION, strlen(RTSP_PROTOCOL_VERSION)))
201 memcpy(buf, string+strlen(RTSP_PROTOCOL_VERSION)+1, 3);
202 buf[3]=0;
203 code=atoi(buf);
204 } else if (!strncmp(string, RTSP_METHOD_SET_PARAMETER,8))
206 return RTSP_STATUS_SET_PARAMETER;
209 if(code != RTSP_STATUS_OK) mp_msg(MSGT_OPEN, MSGL_INFO, "librtsp: server responds: '%s'\n",string);
211 return code;
215 * send a request
218 static void rtsp_send_request(rtsp_t *s, const char *type, const char *what) {
220 char **payload=s->scheduled;
221 char *buf;
223 buf = malloc(strlen(type)+strlen(what)+strlen(RTSP_PROTOCOL_VERSION)+3);
225 sprintf(buf,"%s %s %s",type, what, RTSP_PROTOCOL_VERSION);
226 rtsp_put(s,buf);
227 free(buf);
228 if (payload)
229 while (*payload) {
230 rtsp_put(s,*payload);
231 payload++;
233 rtsp_put(s,"");
234 rtsp_unschedule_all(s);
238 * schedule standard fields
241 static void rtsp_schedule_standard(rtsp_t *s) {
243 char tmp[17];
245 snprintf(tmp, 17, "CSeq: %u", s->cseq);
246 rtsp_schedule_field(s, tmp);
248 if (s->session) {
249 char *buf;
250 buf = malloc(strlen(s->session)+15);
251 sprintf(buf, "Session: %s", s->session);
252 rtsp_schedule_field(s, buf);
253 free(buf);
257 * get the answers, if server responses with something != 200, return NULL
260 static int rtsp_get_answers(rtsp_t *s) {
262 char *answer=NULL;
263 unsigned int answer_seq;
264 char **answer_ptr=s->answers;
265 int code;
266 int ans_count = 0;
268 answer=rtsp_get(s);
269 if (!answer)
270 return 0;
271 code=rtsp_get_code(answer);
272 free(answer);
274 rtsp_free_answers(s);
276 do { /* while we get answer lines */
278 answer=rtsp_get(s);
279 if (!answer)
280 return 0;
282 if (!strncasecmp(answer,"CSeq:",5)) {
283 sscanf(answer,"%*s %u",&answer_seq);
284 if (s->cseq != answer_seq) {
285 #ifdef LOG
286 mp_msg(MSGT_OPEN, MSGL_WARN, "librtsp: warning: CSeq mismatch. got %u, assumed %u", answer_seq, s->cseq);
287 #endif
288 s->cseq=answer_seq;
291 if (!strncasecmp(answer,"Server:",7)) {
292 char *buf = malloc(strlen(answer));
293 sscanf(answer,"%*s %s",buf);
294 if (s->server) free(s->server);
295 s->server=strdup(buf);
296 free(buf);
298 if (!strncasecmp(answer,"Session:",8)) {
299 char *buf = calloc(1, strlen(answer));
300 sscanf(answer,"%*s %s",buf);
301 if (s->session) {
302 if (strcmp(buf, s->session)) {
303 mp_msg(MSGT_OPEN, MSGL_WARN, "rtsp: warning: setting NEW session: %s\n", buf);
304 free(s->session);
305 s->session=strdup(buf);
307 } else
309 #ifdef LOG
310 mp_msg(MSGT_OPEN, MSGL_INFO, "rtsp: setting session id to: %s\n", buf);
311 #endif
312 s->session=strdup(buf);
314 free(buf);
316 *answer_ptr=answer;
317 answer_ptr++;
318 } while ((strlen(answer)!=0) && (++ans_count < MAX_FIELDS));
320 s->cseq++;
322 *answer_ptr=NULL;
323 rtsp_schedule_standard(s);
325 return code;
329 * send an ok message
332 int rtsp_send_ok(rtsp_t *s) {
333 char cseq[16];
335 rtsp_put(s, "RTSP/1.0 200 OK");
336 sprintf(cseq,"CSeq: %u", s->cseq);
337 rtsp_put(s, cseq);
338 rtsp_put(s, "");
339 return 0;
343 * implementation of must-have rtsp requests; functions return
344 * server status code.
347 int rtsp_request_options(rtsp_t *s, const char *what) {
349 char *buf;
351 if (what) {
352 buf=strdup(what);
353 } else
355 buf=malloc(strlen(s->host)+16);
356 sprintf(buf,"rtsp://%s:%i", s->host, s->port);
358 rtsp_send_request(s,RTSP_METHOD_OPTIONS,buf);
359 free(buf);
361 return rtsp_get_answers(s);
364 int rtsp_request_describe(rtsp_t *s, const char *what) {
366 char *buf;
368 if (what) {
369 buf=strdup(what);
370 } else
372 buf=malloc(strlen(s->host)+strlen(s->path)+16);
373 sprintf(buf,"rtsp://%s:%i/%s", s->host, s->port, s->path);
375 rtsp_send_request(s,RTSP_METHOD_DESCRIBE,buf);
376 free(buf);
378 return rtsp_get_answers(s);
381 int rtsp_request_setup(rtsp_t *s, const char *what, char *control) {
383 char *buf = NULL;
385 if (what)
386 buf = strdup (what);
387 else
389 int len = strlen (s->host) + strlen (s->path) + 16;
390 if (control)
391 len += strlen (control) + 1;
393 buf = malloc (len);
394 sprintf (buf, "rtsp://%s:%i/%s%s%s", s->host, s->port, s->path,
395 control ? "/" : "", control ? control : "");
398 rtsp_send_request (s, RTSP_METHOD_SETUP, buf);
399 free (buf);
400 return rtsp_get_answers (s);
403 int rtsp_request_setparameter(rtsp_t *s, const char *what) {
405 char *buf;
407 if (what) {
408 buf=strdup(what);
409 } else
411 buf=malloc(strlen(s->host)+strlen(s->path)+16);
412 sprintf(buf,"rtsp://%s:%i/%s", s->host, s->port, s->path);
414 rtsp_send_request(s,RTSP_METHOD_SET_PARAMETER,buf);
415 free(buf);
417 return rtsp_get_answers(s);
420 int rtsp_request_play(rtsp_t *s, const char *what) {
422 char *buf;
423 int ret;
425 if (what) {
426 buf=strdup(what);
427 } else
429 buf=malloc(strlen(s->host)+strlen(s->path)+16);
430 sprintf(buf,"rtsp://%s:%i/%s", s->host, s->port, s->path);
432 rtsp_send_request(s,RTSP_METHOD_PLAY,buf);
433 free(buf);
435 ret = rtsp_get_answers (s);
436 if (ret == RTSP_STATUS_OK)
437 s->server_state = RTSP_PLAYING;
439 return ret;
442 int rtsp_request_teardown(rtsp_t *s, const char *what) {
444 char *buf;
446 if (what)
447 buf = strdup (what);
448 else
450 buf =
451 malloc (strlen (s->host) + strlen (s->path) + 16);
452 sprintf (buf, "rtsp://%s:%i/%s", s->host, s->port, s->path);
454 rtsp_send_request (s, RTSP_METHOD_TEARDOWN, buf);
455 free (buf);
457 /* after teardown we're done with RTSP streaming, no need to get answer as
458 reading more will only result to garbage and buffer overflow */
459 return RTSP_STATUS_OK;
463 * read opaque data from stream
466 int rtsp_read_data(rtsp_t *s, char *buffer, unsigned int size) {
468 int i,seq;
470 if (size>=4) {
471 i=read_stream(s->s, buffer, 4);
472 if (i<4) return i;
473 if (((buffer[0]=='S')&&(buffer[1]=='E')&&(buffer[2]=='T')&&(buffer[3]=='_')) ||
474 ((buffer[0]=='O')&&(buffer[1]=='P')&&(buffer[2]=='T')&&(buffer[3]=='I'))) // OPTIONS
476 char *rest=rtsp_get(s);
477 if (!rest)
478 return -1;
480 seq=-1;
481 do {
482 free(rest);
483 rest=rtsp_get(s);
484 if (!rest)
485 return -1;
486 if (!strncasecmp(rest,"CSeq:",5))
487 sscanf(rest,"%*s %u",&seq);
488 } while (strlen(rest)!=0);
489 free(rest);
490 if (seq<0) {
491 #ifdef LOG
492 mp_msg(MSGT_OPEN, MSGL_WARN, "rtsp: warning: CSeq not recognized!\n");
493 #endif
494 seq=1;
496 /* let's make the server happy */
497 rtsp_put(s, "RTSP/1.0 451 Parameter Not Understood");
498 rest=malloc(17);
499 sprintf(rest,"CSeq: %u", seq);
500 rtsp_put(s, rest);
501 free(rest);
502 rtsp_put(s, "");
503 i=read_stream(s->s, buffer, size);
504 } else
506 i=read_stream(s->s, buffer+4, size-4);
507 i+=4;
509 } else
510 i=read_stream(s->s, buffer, size);
511 #ifdef LOG
512 mp_msg(MSGT_OPEN, MSGL_INFO, "librtsp: << %d of %d bytes\n", i, size);
513 #endif
515 return i;
519 * connect to a rtsp server
522 //rtsp_t *rtsp_connect(const char *mrl, const char *user_agent) {
523 rtsp_t *rtsp_connect(int fd, char* mrl, char *path, char *host, int port, char *user_agent) {
525 rtsp_t *s;
526 int i;
528 if (fd < 0) {
529 mp_msg(MSGT_OPEN, MSGL_ERR, "rtsp: failed to connect to '%s'\n", host);
530 return NULL;
533 s = malloc(sizeof(rtsp_t));
535 for (i=0; i<MAX_FIELDS; i++) {
536 s->answers[i]=NULL;
537 s->scheduled[i]=NULL;
540 s->s = fd;
541 s->server=NULL;
542 s->server_state=0;
543 s->server_caps=0;
545 s->cseq=0;
546 s->session=NULL;
548 if (user_agent)
549 s->user_agent=strdup(user_agent);
550 else
551 s->user_agent=strdup("User-Agent: RealMedia Player Version 6.0.9.1235 (linux-2.0-libc6-i386-gcc2.95)");
553 s->mrl = strdup(mrl);
554 s->host = strdup(host);
555 s->port = port;
556 s->path = strdup(path);
557 while (*path == '/')
558 path++;
559 if ((s->param = strchr(s->path, '?')) != NULL)
560 s->param++;
561 //mp_msg(MSGT_OPEN, MSGL_INFO, "path=%s\n", s->path);
562 //mp_msg(MSGT_OPEN, MSGL_INFO, "param=%s\n", s->param ? s->param : "NULL");
564 s->server_state=RTSP_CONNECTED;
566 /* now let's send an options request. */
567 rtsp_schedule_field(s, "CSeq: 1");
568 rtsp_schedule_field(s, s->user_agent);
569 rtsp_schedule_field(s, "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7");
570 rtsp_schedule_field(s, "PlayerStarttime: [28/03/2003:22:50:23 00:00]");
571 rtsp_schedule_field(s, "CompanyID: KnKV4M4I/B2FjJ1TToLycw==");
572 rtsp_schedule_field(s, "GUID: 00000000-0000-0000-0000-000000000000");
573 rtsp_schedule_field(s, "RegionData: 0");
574 rtsp_schedule_field(s, "ClientID: Linux_2.4_6.0.9.1235_play32_RN01_EN_586");
575 /*rtsp_schedule_field(s, "Pragma: initiate-session");*/
576 rtsp_request_options(s, NULL);
578 return s;
583 * search in answers for tags. returns a pointer to the content
584 * after the first matched tag. returns NULL if no match found.
587 char *rtsp_search_answers(rtsp_t *s, const char *tag) {
589 char **answer;
590 char *ptr;
592 if (!s->answers) return NULL;
593 answer=s->answers;
595 while (*answer) {
596 if (!strncasecmp(*answer,tag,strlen(tag))) {
597 ptr=strchr(*answer,':');
598 if (!ptr) return NULL;
599 ptr++;
600 while(*ptr==' ') ptr++;
601 return ptr;
603 answer++;
606 return NULL;
610 * session id management
613 void rtsp_set_session(rtsp_t *s, const char *id) {
615 if (s->session) free(s->session);
617 s->session=strdup(id);
621 char *rtsp_get_session(rtsp_t *s) {
623 return s->session;
627 char *rtsp_get_mrl(rtsp_t *s) {
629 return s->mrl;
633 char *rtsp_get_param(rtsp_t *s, const char *p) {
634 int len;
635 char *param;
636 if (!s->param)
637 return NULL;
638 if (!p)
639 return strdup(s->param);
640 len = strlen(p);
641 param = s->param;
642 while (param && *param) {
643 char *nparam = strchr(param, '&');
644 if (strncmp(param, p, len) == 0 && param[len] == '=') {
645 param += len + 1;
646 len = nparam ? nparam - param : strlen(param);
647 nparam = malloc(len + 1);
648 memcpy(nparam, param, len);
649 nparam[len] = 0;
650 return nparam;
652 param = nparam ? nparam + 1 : NULL;
654 return NULL;
658 * schedules a field for transmission
661 void rtsp_schedule_field(rtsp_t *s, const char *string) {
663 int i=0;
665 if (!string) return;
667 while(s->scheduled[i]) {
668 i++;
670 s->scheduled[i]=strdup(string);
674 * removes the first scheduled field which prefix matches string.
677 void rtsp_unschedule_field(rtsp_t *s, const char *string) {
679 char **ptr=s->scheduled;
681 if (!string) return;
683 while(*ptr) {
684 if (!strncmp(*ptr, string, strlen(string)))
685 break;
686 else
687 ptr++;
689 if (*ptr) free(*ptr);
690 ptr++;
691 do {
692 *(ptr-1)=*ptr;
693 } while(*ptr);
697 * unschedule all fields
700 void rtsp_unschedule_all(rtsp_t *s) {
702 char **ptr;
704 if (!s->scheduled) return;
705 ptr=s->scheduled;
707 while (*ptr) {
708 free(*ptr);
709 *ptr=NULL;
710 ptr++;
714 * free answers
717 void rtsp_free_answers(rtsp_t *s) {
719 char **answer;
721 if (!s->answers) return;
722 answer=s->answers;
724 while (*answer) {
725 free(*answer);
726 *answer=NULL;
727 answer++;