You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2247 lines
82KB

  1. /*
  2. * RTSP/SDP client
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avassert.h"
  22. #include "libavutil/base64.h"
  23. #include "libavutil/avstring.h"
  24. #include "libavutil/intreadwrite.h"
  25. #include "libavutil/mathematics.h"
  26. #include "libavutil/parseutils.h"
  27. #include "libavutil/random_seed.h"
  28. #include "libavutil/dict.h"
  29. #include "libavutil/opt.h"
  30. #include "libavutil/time.h"
  31. #include "avformat.h"
  32. #include "avio_internal.h"
  33. #if HAVE_POLL_H
  34. #include <poll.h>
  35. #endif
  36. #include "internal.h"
  37. #include "network.h"
  38. #include "os_support.h"
  39. #include "http.h"
  40. #include "rtsp.h"
  41. #include "rtpdec.h"
  42. #include "rdt.h"
  43. #include "rtpdec_formats.h"
  44. #include "rtpenc_chain.h"
  45. #include "url.h"
  46. #include "rtpenc.h"
  47. #include "mpegts.h"
  48. /* Timeout values for socket poll, in ms,
  49. * and read_packet(), in seconds */
  50. #define POLL_TIMEOUT_MS 100
  51. #define READ_PACKET_TIMEOUT_S 10
  52. #define MAX_TIMEOUTS READ_PACKET_TIMEOUT_S * 1000 / POLL_TIMEOUT_MS
  53. #define SDP_MAX_SIZE 16384
  54. #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH
  55. #define DEFAULT_REORDERING_DELAY 100000
  56. #define OFFSET(x) offsetof(RTSPState, x)
  57. #define DEC AV_OPT_FLAG_DECODING_PARAM
  58. #define ENC AV_OPT_FLAG_ENCODING_PARAM
  59. #define DEFAULT_USER_AGENT "Lavf/" AV_STRINGIFY(LIBAVFORMAT_VERSION)
  60. #define RTSP_FLAG_OPTS(name, longname) \
  61. { name, longname, OFFSET(rtsp_flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC, "rtsp_flags" }, \
  62. { "filter_src", "Only receive packets from the negotiated peer IP", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_FILTER_SRC}, 0, 0, DEC, "rtsp_flags" }, \
  63. { "listen", "Wait for incoming connections", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_LISTEN}, 0, 0, DEC, "rtsp_flags" }
  64. #define RTSP_MEDIATYPE_OPTS(name, longname) \
  65. { name, longname, OFFSET(media_type_mask), AV_OPT_TYPE_FLAGS, { .i64 = (1 << (AVMEDIA_TYPE_DATA+1)) - 1 }, INT_MIN, INT_MAX, DEC, "allowed_media_types" }, \
  66. { "video", "Video", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_VIDEO}, 0, 0, DEC, "allowed_media_types" }, \
  67. { "audio", "Audio", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_AUDIO}, 0, 0, DEC, "allowed_media_types" }, \
  68. { "data", "Data", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_DATA}, 0, 0, DEC, "allowed_media_types" }
  69. #define RTSP_REORDERING_OPTS() \
  70. { "reorder_queue_size", "Number of packets to buffer for handling of reordered packets", OFFSET(reordering_queue_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC }
  71. const AVOption ff_rtsp_options[] = {
  72. { "initial_pause", "Don't start playing the stream immediately", OFFSET(initial_pause), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC },
  73. FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
  74. { "rtsp_transport", "RTSP transport protocols", OFFSET(lower_transport_mask), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC|ENC, "rtsp_transport" }, \
  75. { "udp", "UDP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
  76. { "tcp", "TCP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_TCP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
  77. { "udp_multicast", "UDP multicast", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP_MULTICAST}, 0, 0, DEC, "rtsp_transport" },
  78. { "http", "HTTP tunneling", 0, AV_OPT_TYPE_CONST, {.i64 = (1 << RTSP_LOWER_TRANSPORT_HTTP)}, 0, 0, DEC, "rtsp_transport" },
  79. RTSP_FLAG_OPTS("rtsp_flags", "RTSP flags"),
  80. RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
  81. { "min_port", "Minimum local UDP port", OFFSET(rtp_port_min), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MIN}, 0, 65535, DEC|ENC },
  82. { "max_port", "Maximum local UDP port", OFFSET(rtp_port_max), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MAX}, 0, 65535, DEC|ENC },
  83. { "timeout", "Maximum timeout (in seconds) to wait for incoming connections. -1 is infinite. Implies flag listen", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX, DEC },
  84. { "stimeout", "timeout (in micro seconds) of socket i/o operations.", OFFSET(stimeout), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC },
  85. RTSP_REORDERING_OPTS(),
  86. { "user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = DEFAULT_USER_AGENT}, 0, 0, DEC },
  87. { NULL },
  88. };
  89. static const AVOption sdp_options[] = {
  90. RTSP_FLAG_OPTS("sdp_flags", "SDP flags"),
  91. { "custom_io", "Use custom IO", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_CUSTOM_IO}, 0, 0, DEC, "rtsp_flags" },
  92. RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
  93. RTSP_REORDERING_OPTS(),
  94. { NULL },
  95. };
  96. static const AVOption rtp_options[] = {
  97. RTSP_FLAG_OPTS("rtp_flags", "RTP flags"),
  98. RTSP_REORDERING_OPTS(),
  99. { NULL },
  100. };
  101. static void get_word_until_chars(char *buf, int buf_size,
  102. const char *sep, const char **pp)
  103. {
  104. const char *p;
  105. char *q;
  106. p = *pp;
  107. p += strspn(p, SPACE_CHARS);
  108. q = buf;
  109. while (!strchr(sep, *p) && *p != '\0') {
  110. if ((q - buf) < buf_size - 1)
  111. *q++ = *p;
  112. p++;
  113. }
  114. if (buf_size > 0)
  115. *q = '\0';
  116. *pp = p;
  117. }
  118. static void get_word_sep(char *buf, int buf_size, const char *sep,
  119. const char **pp)
  120. {
  121. if (**pp == '/') (*pp)++;
  122. get_word_until_chars(buf, buf_size, sep, pp);
  123. }
  124. static void get_word(char *buf, int buf_size, const char **pp)
  125. {
  126. get_word_until_chars(buf, buf_size, SPACE_CHARS, pp);
  127. }
  128. /** Parse a string p in the form of Range:npt=xx-xx, and determine the start
  129. * and end time.
  130. * Used for seeking in the rtp stream.
  131. */
  132. static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
  133. {
  134. char buf[256];
  135. p += strspn(p, SPACE_CHARS);
  136. if (!av_stristart(p, "npt=", &p))
  137. return;
  138. *start = AV_NOPTS_VALUE;
  139. *end = AV_NOPTS_VALUE;
  140. get_word_sep(buf, sizeof(buf), "-", &p);
  141. av_parse_time(start, buf, 1);
  142. if (*p == '-') {
  143. p++;
  144. get_word_sep(buf, sizeof(buf), "-", &p);
  145. av_parse_time(end, buf, 1);
  146. }
  147. }
  148. static int get_sockaddr(const char *buf, struct sockaddr_storage *sock)
  149. {
  150. struct addrinfo hints = { 0 }, *ai = NULL;
  151. hints.ai_flags = AI_NUMERICHOST;
  152. if (getaddrinfo(buf, NULL, &hints, &ai))
  153. return -1;
  154. memcpy(sock, ai->ai_addr, FFMIN(sizeof(*sock), ai->ai_addrlen));
  155. freeaddrinfo(ai);
  156. return 0;
  157. }
  158. #if CONFIG_RTPDEC
  159. static void init_rtp_handler(RTPDynamicProtocolHandler *handler,
  160. RTSPStream *rtsp_st, AVCodecContext *codec)
  161. {
  162. if (!handler)
  163. return;
  164. if (codec)
  165. codec->codec_id = handler->codec_id;
  166. rtsp_st->dynamic_handler = handler;
  167. if (handler->alloc) {
  168. rtsp_st->dynamic_protocol_context = handler->alloc();
  169. if (!rtsp_st->dynamic_protocol_context)
  170. rtsp_st->dynamic_handler = NULL;
  171. }
  172. }
  173. /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other params>] */
  174. static int sdp_parse_rtpmap(AVFormatContext *s,
  175. AVStream *st, RTSPStream *rtsp_st,
  176. int payload_type, const char *p)
  177. {
  178. AVCodecContext *codec = st->codec;
  179. char buf[256];
  180. int i;
  181. AVCodec *c;
  182. const char *c_name;
  183. /* See if we can handle this kind of payload.
  184. * The space should normally not be there but some Real streams or
  185. * particular servers ("RealServer Version 6.1.3.970", see issue 1658)
  186. * have a trailing space. */
  187. get_word_sep(buf, sizeof(buf), "/ ", &p);
  188. if (payload_type < RTP_PT_PRIVATE) {
  189. /* We are in a standard case
  190. * (from http://www.iana.org/assignments/rtp-parameters). */
  191. codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
  192. }
  193. if (codec->codec_id == AV_CODEC_ID_NONE) {
  194. RTPDynamicProtocolHandler *handler =
  195. ff_rtp_handler_find_by_name(buf, codec->codec_type);
  196. init_rtp_handler(handler, rtsp_st, codec);
  197. /* If no dynamic handler was found, check with the list of standard
  198. * allocated types, if such a stream for some reason happens to
  199. * use a private payload type. This isn't handled in rtpdec.c, since
  200. * the format name from the rtpmap line never is passed into rtpdec. */
  201. if (!rtsp_st->dynamic_handler)
  202. codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
  203. }
  204. c = avcodec_find_decoder(codec->codec_id);
  205. if (c && c->name)
  206. c_name = c->name;
  207. else
  208. c_name = "(null)";
  209. get_word_sep(buf, sizeof(buf), "/", &p);
  210. i = atoi(buf);
  211. switch (codec->codec_type) {
  212. case AVMEDIA_TYPE_AUDIO:
  213. av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name);
  214. codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE;
  215. codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS;
  216. if (i > 0) {
  217. codec->sample_rate = i;
  218. avpriv_set_pts_info(st, 32, 1, codec->sample_rate);
  219. get_word_sep(buf, sizeof(buf), "/", &p);
  220. i = atoi(buf);
  221. if (i > 0)
  222. codec->channels = i;
  223. }
  224. av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n",
  225. codec->sample_rate);
  226. av_log(s, AV_LOG_DEBUG, "audio channels set to: %i\n",
  227. codec->channels);
  228. break;
  229. case AVMEDIA_TYPE_VIDEO:
  230. av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name);
  231. if (i > 0)
  232. avpriv_set_pts_info(st, 32, 1, i);
  233. break;
  234. default:
  235. break;
  236. }
  237. if (rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->init)
  238. rtsp_st->dynamic_handler->init(s, st->index,
  239. rtsp_st->dynamic_protocol_context);
  240. return 0;
  241. }
  242. /* parse the attribute line from the fmtp a line of an sdp response. This
  243. * is broken out as a function because it is used in rtp_h264.c, which is
  244. * forthcoming. */
  245. int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
  246. char *value, int value_size)
  247. {
  248. *p += strspn(*p, SPACE_CHARS);
  249. if (**p) {
  250. get_word_sep(attr, attr_size, "=", p);
  251. if (**p == '=')
  252. (*p)++;
  253. get_word_sep(value, value_size, ";", p);
  254. if (**p == ';')
  255. (*p)++;
  256. return 1;
  257. }
  258. return 0;
  259. }
  260. typedef struct SDPParseState {
  261. /* SDP only */
  262. struct sockaddr_storage default_ip;
  263. int default_ttl;
  264. int skip_media; ///< set if an unknown m= line occurs
  265. } SDPParseState;
  266. static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
  267. int letter, const char *buf)
  268. {
  269. RTSPState *rt = s->priv_data;
  270. char buf1[64], st_type[64];
  271. const char *p;
  272. enum AVMediaType codec_type;
  273. int payload_type, i;
  274. AVStream *st;
  275. RTSPStream *rtsp_st;
  276. struct sockaddr_storage sdp_ip;
  277. int ttl;
  278. av_dlog(s, "sdp: %c='%s'\n", letter, buf);
  279. p = buf;
  280. if (s1->skip_media && letter != 'm')
  281. return;
  282. switch (letter) {
  283. case 'c':
  284. get_word(buf1, sizeof(buf1), &p);
  285. if (strcmp(buf1, "IN") != 0)
  286. return;
  287. get_word(buf1, sizeof(buf1), &p);
  288. if (strcmp(buf1, "IP4") && strcmp(buf1, "IP6"))
  289. return;
  290. get_word_sep(buf1, sizeof(buf1), "/", &p);
  291. if (get_sockaddr(buf1, &sdp_ip))
  292. return;
  293. ttl = 16;
  294. if (*p == '/') {
  295. p++;
  296. get_word_sep(buf1, sizeof(buf1), "/", &p);
  297. ttl = atoi(buf1);
  298. }
  299. if (s->nb_streams == 0) {
  300. s1->default_ip = sdp_ip;
  301. s1->default_ttl = ttl;
  302. } else {
  303. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  304. rtsp_st->sdp_ip = sdp_ip;
  305. rtsp_st->sdp_ttl = ttl;
  306. }
  307. break;
  308. case 's':
  309. av_dict_set(&s->metadata, "title", p, 0);
  310. break;
  311. case 'i':
  312. if (s->nb_streams == 0) {
  313. av_dict_set(&s->metadata, "comment", p, 0);
  314. break;
  315. }
  316. break;
  317. case 'm':
  318. /* new stream */
  319. s1->skip_media = 0;
  320. codec_type = AVMEDIA_TYPE_UNKNOWN;
  321. get_word(st_type, sizeof(st_type), &p);
  322. if (!strcmp(st_type, "audio")) {
  323. codec_type = AVMEDIA_TYPE_AUDIO;
  324. } else if (!strcmp(st_type, "video")) {
  325. codec_type = AVMEDIA_TYPE_VIDEO;
  326. } else if (!strcmp(st_type, "application")) {
  327. codec_type = AVMEDIA_TYPE_DATA;
  328. }
  329. if (codec_type == AVMEDIA_TYPE_UNKNOWN || !(rt->media_type_mask & (1 << codec_type))) {
  330. s1->skip_media = 1;
  331. return;
  332. }
  333. rtsp_st = av_mallocz(sizeof(RTSPStream));
  334. if (!rtsp_st)
  335. return;
  336. rtsp_st->stream_index = -1;
  337. dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
  338. rtsp_st->sdp_ip = s1->default_ip;
  339. rtsp_st->sdp_ttl = s1->default_ttl;
  340. get_word(buf1, sizeof(buf1), &p); /* port */
  341. rtsp_st->sdp_port = atoi(buf1);
  342. get_word(buf1, sizeof(buf1), &p); /* protocol */
  343. if (!strcmp(buf1, "udp"))
  344. rt->transport = RTSP_TRANSPORT_RAW;
  345. else if (strstr(buf1, "/AVPF") || strstr(buf1, "/SAVPF"))
  346. rtsp_st->feedback = 1;
  347. /* XXX: handle list of formats */
  348. get_word(buf1, sizeof(buf1), &p); /* format list */
  349. rtsp_st->sdp_payload_type = atoi(buf1);
  350. if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) {
  351. /* no corresponding stream */
  352. if (rt->transport == RTSP_TRANSPORT_RAW) {
  353. if (!rt->ts && CONFIG_RTPDEC)
  354. rt->ts = ff_mpegts_parse_open(s);
  355. } else {
  356. RTPDynamicProtocolHandler *handler;
  357. handler = ff_rtp_handler_find_by_id(
  358. rtsp_st->sdp_payload_type, AVMEDIA_TYPE_DATA);
  359. init_rtp_handler(handler, rtsp_st, NULL);
  360. if (handler && handler->init)
  361. handler->init(s, -1, rtsp_st->dynamic_protocol_context);
  362. }
  363. } else if (rt->server_type == RTSP_SERVER_WMS &&
  364. codec_type == AVMEDIA_TYPE_DATA) {
  365. /* RTX stream, a stream that carries all the other actual
  366. * audio/video streams. Don't expose this to the callers. */
  367. } else {
  368. st = avformat_new_stream(s, NULL);
  369. if (!st)
  370. return;
  371. st->id = rt->nb_rtsp_streams - 1;
  372. rtsp_st->stream_index = st->index;
  373. st->codec->codec_type = codec_type;
  374. if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
  375. RTPDynamicProtocolHandler *handler;
  376. /* if standard payload type, we can find the codec right now */
  377. ff_rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
  378. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
  379. st->codec->sample_rate > 0)
  380. avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
  381. /* Even static payload types may need a custom depacketizer */
  382. handler = ff_rtp_handler_find_by_id(
  383. rtsp_st->sdp_payload_type, st->codec->codec_type);
  384. init_rtp_handler(handler, rtsp_st, st->codec);
  385. if (handler && handler->init)
  386. handler->init(s, st->index,
  387. rtsp_st->dynamic_protocol_context);
  388. }
  389. }
  390. /* put a default control url */
  391. av_strlcpy(rtsp_st->control_url, rt->control_uri,
  392. sizeof(rtsp_st->control_url));
  393. break;
  394. case 'a':
  395. if (av_strstart(p, "control:", &p)) {
  396. if (s->nb_streams == 0) {
  397. if (!strncmp(p, "rtsp://", 7))
  398. av_strlcpy(rt->control_uri, p,
  399. sizeof(rt->control_uri));
  400. } else {
  401. char proto[32];
  402. /* get the control url */
  403. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  404. /* XXX: may need to add full url resolution */
  405. av_url_split(proto, sizeof(proto), NULL, 0, NULL, 0,
  406. NULL, NULL, 0, p);
  407. if (proto[0] == '\0') {
  408. /* relative control URL */
  409. if (rtsp_st->control_url[strlen(rtsp_st->control_url)-1]!='/')
  410. av_strlcat(rtsp_st->control_url, "/",
  411. sizeof(rtsp_st->control_url));
  412. av_strlcat(rtsp_st->control_url, p,
  413. sizeof(rtsp_st->control_url));
  414. } else
  415. av_strlcpy(rtsp_st->control_url, p,
  416. sizeof(rtsp_st->control_url));
  417. }
  418. } else if (av_strstart(p, "rtpmap:", &p) && s->nb_streams > 0) {
  419. /* NOTE: rtpmap is only supported AFTER the 'm=' tag */
  420. get_word(buf1, sizeof(buf1), &p);
  421. payload_type = atoi(buf1);
  422. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  423. if (rtsp_st->stream_index >= 0) {
  424. st = s->streams[rtsp_st->stream_index];
  425. sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
  426. }
  427. } else if (av_strstart(p, "fmtp:", &p) ||
  428. av_strstart(p, "framesize:", &p)) {
  429. /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */
  430. // let dynamic protocol handlers have a stab at the line.
  431. get_word(buf1, sizeof(buf1), &p);
  432. payload_type = atoi(buf1);
  433. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  434. rtsp_st = rt->rtsp_streams[i];
  435. if (rtsp_st->sdp_payload_type == payload_type &&
  436. rtsp_st->dynamic_handler &&
  437. rtsp_st->dynamic_handler->parse_sdp_a_line)
  438. rtsp_st->dynamic_handler->parse_sdp_a_line(s, i,
  439. rtsp_st->dynamic_protocol_context, buf);
  440. }
  441. } else if (av_strstart(p, "range:", &p)) {
  442. int64_t start, end;
  443. // this is so that seeking on a streamed file can work.
  444. rtsp_parse_range_npt(p, &start, &end);
  445. s->start_time = start;
  446. /* AV_NOPTS_VALUE means live broadcast (and can't seek) */
  447. s->duration = (end == AV_NOPTS_VALUE) ?
  448. AV_NOPTS_VALUE : end - start;
  449. } else if (av_strstart(p, "IsRealDataType:integer;",&p)) {
  450. if (atoi(p) == 1)
  451. rt->transport = RTSP_TRANSPORT_RDT;
  452. } else if (av_strstart(p, "SampleRate:integer;", &p) &&
  453. s->nb_streams > 0) {
  454. st = s->streams[s->nb_streams - 1];
  455. st->codec->sample_rate = atoi(p);
  456. } else if (av_strstart(p, "crypto:", &p) && s->nb_streams > 0) {
  457. // RFC 4568
  458. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  459. get_word(buf1, sizeof(buf1), &p); // ignore tag
  460. get_word(rtsp_st->crypto_suite, sizeof(rtsp_st->crypto_suite), &p);
  461. p += strspn(p, SPACE_CHARS);
  462. if (av_strstart(p, "inline:", &p))
  463. get_word(rtsp_st->crypto_params, sizeof(rtsp_st->crypto_params), &p);
  464. } else {
  465. if (rt->server_type == RTSP_SERVER_WMS)
  466. ff_wms_parse_sdp_a_line(s, p);
  467. if (s->nb_streams > 0) {
  468. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  469. if (rt->server_type == RTSP_SERVER_REAL)
  470. ff_real_parse_sdp_a_line(s, rtsp_st->stream_index, p);
  471. if (rtsp_st->dynamic_handler &&
  472. rtsp_st->dynamic_handler->parse_sdp_a_line)
  473. rtsp_st->dynamic_handler->parse_sdp_a_line(s,
  474. rtsp_st->stream_index,
  475. rtsp_st->dynamic_protocol_context, buf);
  476. }
  477. }
  478. break;
  479. }
  480. }
  481. int ff_sdp_parse(AVFormatContext *s, const char *content)
  482. {
  483. RTSPState *rt = s->priv_data;
  484. const char *p;
  485. int letter;
  486. /* Some SDP lines, particularly for Realmedia or ASF RTSP streams,
  487. * contain long SDP lines containing complete ASF Headers (several
  488. * kB) or arrays of MDPR (RM stream descriptor) headers plus
  489. * "rulebooks" describing their properties. Therefore, the SDP line
  490. * buffer is large.
  491. *
  492. * The Vorbis FMTP line can be up to 16KB - see xiph_parse_sdp_line
  493. * in rtpdec_xiph.c. */
  494. char buf[16384], *q;
  495. SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state;
  496. p = content;
  497. for (;;) {
  498. p += strspn(p, SPACE_CHARS);
  499. letter = *p;
  500. if (letter == '\0')
  501. break;
  502. p++;
  503. if (*p != '=')
  504. goto next_line;
  505. p++;
  506. /* get the content */
  507. q = buf;
  508. while (*p != '\n' && *p != '\r' && *p != '\0') {
  509. if ((q - buf) < sizeof(buf) - 1)
  510. *q++ = *p;
  511. p++;
  512. }
  513. *q = '\0';
  514. sdp_parse_line(s, s1, letter, buf);
  515. next_line:
  516. while (*p != '\n' && *p != '\0')
  517. p++;
  518. if (*p == '\n')
  519. p++;
  520. }
  521. rt->p = av_malloc(sizeof(struct pollfd)*2*(rt->nb_rtsp_streams+1));
  522. if (!rt->p) return AVERROR(ENOMEM);
  523. return 0;
  524. }
  525. #endif /* CONFIG_RTPDEC */
  526. void ff_rtsp_undo_setup(AVFormatContext *s)
  527. {
  528. RTSPState *rt = s->priv_data;
  529. int i;
  530. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  531. RTSPStream *rtsp_st = rt->rtsp_streams[i];
  532. if (!rtsp_st)
  533. continue;
  534. if (rtsp_st->transport_priv) {
  535. if (s->oformat) {
  536. AVFormatContext *rtpctx = rtsp_st->transport_priv;
  537. av_write_trailer(rtpctx);
  538. if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
  539. uint8_t *ptr;
  540. avio_close_dyn_buf(rtpctx->pb, &ptr);
  541. av_free(ptr);
  542. } else {
  543. avio_close(rtpctx->pb);
  544. }
  545. avformat_free_context(rtpctx);
  546. } else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
  547. ff_rdt_parse_close(rtsp_st->transport_priv);
  548. else if (rt->transport == RTSP_TRANSPORT_RTP && CONFIG_RTPDEC)
  549. ff_rtp_parse_close(rtsp_st->transport_priv);
  550. }
  551. rtsp_st->transport_priv = NULL;
  552. if (rtsp_st->rtp_handle)
  553. ffurl_close(rtsp_st->rtp_handle);
  554. rtsp_st->rtp_handle = NULL;
  555. }
  556. }
  557. /* close and free RTSP streams */
  558. void ff_rtsp_close_streams(AVFormatContext *s)
  559. {
  560. RTSPState *rt = s->priv_data;
  561. int i;
  562. RTSPStream *rtsp_st;
  563. ff_rtsp_undo_setup(s);
  564. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  565. rtsp_st = rt->rtsp_streams[i];
  566. if (rtsp_st) {
  567. if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context)
  568. rtsp_st->dynamic_handler->free(
  569. rtsp_st->dynamic_protocol_context);
  570. av_free(rtsp_st);
  571. }
  572. }
  573. av_free(rt->rtsp_streams);
  574. if (rt->asf_ctx) {
  575. avformat_close_input(&rt->asf_ctx);
  576. }
  577. if (rt->ts && CONFIG_RTPDEC)
  578. ff_mpegts_parse_close(rt->ts);
  579. av_free(rt->p);
  580. av_free(rt->recvbuf);
  581. }
  582. int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
  583. {
  584. RTSPState *rt = s->priv_data;
  585. AVStream *st = NULL;
  586. int reordering_queue_size = rt->reordering_queue_size;
  587. if (reordering_queue_size < 0) {
  588. if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP || !s->max_delay)
  589. reordering_queue_size = 0;
  590. else
  591. reordering_queue_size = RTP_REORDER_QUEUE_DEFAULT_SIZE;
  592. }
  593. /* open the RTP context */
  594. if (rtsp_st->stream_index >= 0)
  595. st = s->streams[rtsp_st->stream_index];
  596. if (!st)
  597. s->ctx_flags |= AVFMTCTX_NOHEADER;
  598. if (s->oformat && CONFIG_RTSP_MUXER) {
  599. int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv, s, st,
  600. rtsp_st->rtp_handle,
  601. RTSP_TCP_MAX_PACKET_SIZE,
  602. rtsp_st->stream_index);
  603. /* Ownership of rtp_handle is passed to the rtp mux context */
  604. rtsp_st->rtp_handle = NULL;
  605. if (ret < 0)
  606. return ret;
  607. } else if (rt->transport == RTSP_TRANSPORT_RAW) {
  608. return 0; // Don't need to open any parser here
  609. } else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
  610. rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index,
  611. rtsp_st->dynamic_protocol_context,
  612. rtsp_st->dynamic_handler);
  613. else if (CONFIG_RTPDEC)
  614. rtsp_st->transport_priv = ff_rtp_parse_open(s, st,
  615. rtsp_st->sdp_payload_type,
  616. reordering_queue_size);
  617. if (!rtsp_st->transport_priv) {
  618. return AVERROR(ENOMEM);
  619. } else if (rt->transport == RTSP_TRANSPORT_RTP && CONFIG_RTPDEC) {
  620. if (rtsp_st->dynamic_handler) {
  621. ff_rtp_parse_set_dynamic_protocol(rtsp_st->transport_priv,
  622. rtsp_st->dynamic_protocol_context,
  623. rtsp_st->dynamic_handler);
  624. }
  625. if (rtsp_st->crypto_suite[0])
  626. ff_rtp_parse_set_crypto(rtsp_st->transport_priv,
  627. rtsp_st->crypto_suite,
  628. rtsp_st->crypto_params);
  629. }
  630. return 0;
  631. }
  632. #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
  633. static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
  634. {
  635. const char *q;
  636. char *p;
  637. int v;
  638. q = *pp;
  639. q += strspn(q, SPACE_CHARS);
  640. v = strtol(q, &p, 10);
  641. if (*p == '-') {
  642. p++;
  643. *min_ptr = v;
  644. v = strtol(p, &p, 10);
  645. *max_ptr = v;
  646. } else {
  647. *min_ptr = v;
  648. *max_ptr = v;
  649. }
  650. *pp = p;
  651. }
  652. /* XXX: only one transport specification is parsed */
  653. static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p)
  654. {
  655. char transport_protocol[16];
  656. char profile[16];
  657. char lower_transport[16];
  658. char parameter[16];
  659. RTSPTransportField *th;
  660. char buf[256];
  661. reply->nb_transports = 0;
  662. for (;;) {
  663. p += strspn(p, SPACE_CHARS);
  664. if (*p == '\0')
  665. break;
  666. th = &reply->transports[reply->nb_transports];
  667. get_word_sep(transport_protocol, sizeof(transport_protocol),
  668. "/", &p);
  669. if (!av_strcasecmp (transport_protocol, "rtp")) {
  670. get_word_sep(profile, sizeof(profile), "/;,", &p);
  671. lower_transport[0] = '\0';
  672. /* rtp/avp/<protocol> */
  673. if (*p == '/') {
  674. get_word_sep(lower_transport, sizeof(lower_transport),
  675. ";,", &p);
  676. }
  677. th->transport = RTSP_TRANSPORT_RTP;
  678. } else if (!av_strcasecmp (transport_protocol, "x-pn-tng") ||
  679. !av_strcasecmp (transport_protocol, "x-real-rdt")) {
  680. /* x-pn-tng/<protocol> */
  681. get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p);
  682. profile[0] = '\0';
  683. th->transport = RTSP_TRANSPORT_RDT;
  684. } else if (!av_strcasecmp(transport_protocol, "raw")) {
  685. get_word_sep(profile, sizeof(profile), "/;,", &p);
  686. lower_transport[0] = '\0';
  687. /* raw/raw/<protocol> */
  688. if (*p == '/') {
  689. get_word_sep(lower_transport, sizeof(lower_transport),
  690. ";,", &p);
  691. }
  692. th->transport = RTSP_TRANSPORT_RAW;
  693. }
  694. if (!av_strcasecmp(lower_transport, "TCP"))
  695. th->lower_transport = RTSP_LOWER_TRANSPORT_TCP;
  696. else
  697. th->lower_transport = RTSP_LOWER_TRANSPORT_UDP;
  698. if (*p == ';')
  699. p++;
  700. /* get each parameter */
  701. while (*p != '\0' && *p != ',') {
  702. get_word_sep(parameter, sizeof(parameter), "=;,", &p);
  703. if (!strcmp(parameter, "port")) {
  704. if (*p == '=') {
  705. p++;
  706. rtsp_parse_range(&th->port_min, &th->port_max, &p);
  707. }
  708. } else if (!strcmp(parameter, "client_port")) {
  709. if (*p == '=') {
  710. p++;
  711. rtsp_parse_range(&th->client_port_min,
  712. &th->client_port_max, &p);
  713. }
  714. } else if (!strcmp(parameter, "server_port")) {
  715. if (*p == '=') {
  716. p++;
  717. rtsp_parse_range(&th->server_port_min,
  718. &th->server_port_max, &p);
  719. }
  720. } else if (!strcmp(parameter, "interleaved")) {
  721. if (*p == '=') {
  722. p++;
  723. rtsp_parse_range(&th->interleaved_min,
  724. &th->interleaved_max, &p);
  725. }
  726. } else if (!strcmp(parameter, "multicast")) {
  727. if (th->lower_transport == RTSP_LOWER_TRANSPORT_UDP)
  728. th->lower_transport = RTSP_LOWER_TRANSPORT_UDP_MULTICAST;
  729. } else if (!strcmp(parameter, "ttl")) {
  730. if (*p == '=') {
  731. char *end;
  732. p++;
  733. th->ttl = strtol(p, &end, 10);
  734. p = end;
  735. }
  736. } else if (!strcmp(parameter, "destination")) {
  737. if (*p == '=') {
  738. p++;
  739. get_word_sep(buf, sizeof(buf), ";,", &p);
  740. get_sockaddr(buf, &th->destination);
  741. }
  742. } else if (!strcmp(parameter, "source")) {
  743. if (*p == '=') {
  744. p++;
  745. get_word_sep(buf, sizeof(buf), ";,", &p);
  746. av_strlcpy(th->source, buf, sizeof(th->source));
  747. }
  748. } else if (!strcmp(parameter, "mode")) {
  749. if (*p == '=') {
  750. p++;
  751. get_word_sep(buf, sizeof(buf), ";, ", &p);
  752. if (!strcmp(buf, "record") ||
  753. !strcmp(buf, "receive"))
  754. th->mode_record = 1;
  755. }
  756. }
  757. while (*p != ';' && *p != '\0' && *p != ',')
  758. p++;
  759. if (*p == ';')
  760. p++;
  761. }
  762. if (*p == ',')
  763. p++;
  764. reply->nb_transports++;
  765. }
  766. }
  767. static void handle_rtp_info(RTSPState *rt, const char *url,
  768. uint32_t seq, uint32_t rtptime)
  769. {
  770. int i;
  771. if (!rtptime || !url[0])
  772. return;
  773. if (rt->transport != RTSP_TRANSPORT_RTP)
  774. return;
  775. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  776. RTSPStream *rtsp_st = rt->rtsp_streams[i];
  777. RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
  778. if (!rtpctx)
  779. continue;
  780. if (!strcmp(rtsp_st->control_url, url)) {
  781. rtpctx->base_timestamp = rtptime;
  782. break;
  783. }
  784. }
  785. }
  786. static void rtsp_parse_rtp_info(RTSPState *rt, const char *p)
  787. {
  788. int read = 0;
  789. char key[20], value[1024], url[1024] = "";
  790. uint32_t seq = 0, rtptime = 0;
  791. for (;;) {
  792. p += strspn(p, SPACE_CHARS);
  793. if (!*p)
  794. break;
  795. get_word_sep(key, sizeof(key), "=", &p);
  796. if (*p != '=')
  797. break;
  798. p++;
  799. get_word_sep(value, sizeof(value), ";, ", &p);
  800. read++;
  801. if (!strcmp(key, "url"))
  802. av_strlcpy(url, value, sizeof(url));
  803. else if (!strcmp(key, "seq"))
  804. seq = strtoul(value, NULL, 10);
  805. else if (!strcmp(key, "rtptime"))
  806. rtptime = strtoul(value, NULL, 10);
  807. if (*p == ',') {
  808. handle_rtp_info(rt, url, seq, rtptime);
  809. url[0] = '\0';
  810. seq = rtptime = 0;
  811. read = 0;
  812. }
  813. if (*p)
  814. p++;
  815. }
  816. if (read > 0)
  817. handle_rtp_info(rt, url, seq, rtptime);
  818. }
  819. void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf,
  820. RTSPState *rt, const char *method)
  821. {
  822. const char *p;
  823. /* NOTE: we do case independent match for broken servers */
  824. p = buf;
  825. if (av_stristart(p, "Session:", &p)) {
  826. int t;
  827. get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p);
  828. if (av_stristart(p, ";timeout=", &p) &&
  829. (t = strtol(p, NULL, 10)) > 0) {
  830. reply->timeout = t;
  831. }
  832. } else if (av_stristart(p, "Content-Length:", &p)) {
  833. reply->content_length = strtol(p, NULL, 10);
  834. } else if (av_stristart(p, "Transport:", &p)) {
  835. rtsp_parse_transport(reply, p);
  836. } else if (av_stristart(p, "CSeq:", &p)) {
  837. reply->seq = strtol(p, NULL, 10);
  838. } else if (av_stristart(p, "Range:", &p)) {
  839. rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end);
  840. } else if (av_stristart(p, "RealChallenge1:", &p)) {
  841. p += strspn(p, SPACE_CHARS);
  842. av_strlcpy(reply->real_challenge, p, sizeof(reply->real_challenge));
  843. } else if (av_stristart(p, "Server:", &p)) {
  844. p += strspn(p, SPACE_CHARS);
  845. av_strlcpy(reply->server, p, sizeof(reply->server));
  846. } else if (av_stristart(p, "Notice:", &p) ||
  847. av_stristart(p, "X-Notice:", &p)) {
  848. reply->notice = strtol(p, NULL, 10);
  849. } else if (av_stristart(p, "Location:", &p)) {
  850. p += strspn(p, SPACE_CHARS);
  851. av_strlcpy(reply->location, p , sizeof(reply->location));
  852. } else if (av_stristart(p, "WWW-Authenticate:", &p) && rt) {
  853. p += strspn(p, SPACE_CHARS);
  854. ff_http_auth_handle_header(&rt->auth_state, "WWW-Authenticate", p);
  855. } else if (av_stristart(p, "Authentication-Info:", &p) && rt) {
  856. p += strspn(p, SPACE_CHARS);
  857. ff_http_auth_handle_header(&rt->auth_state, "Authentication-Info", p);
  858. } else if (av_stristart(p, "Content-Base:", &p) && rt) {
  859. p += strspn(p, SPACE_CHARS);
  860. if (method && !strcmp(method, "DESCRIBE"))
  861. av_strlcpy(rt->control_uri, p , sizeof(rt->control_uri));
  862. } else if (av_stristart(p, "RTP-Info:", &p) && rt) {
  863. p += strspn(p, SPACE_CHARS);
  864. if (method && !strcmp(method, "PLAY"))
  865. rtsp_parse_rtp_info(rt, p);
  866. } else if (av_stristart(p, "Public:", &p) && rt) {
  867. if (strstr(p, "GET_PARAMETER") &&
  868. method && !strcmp(method, "OPTIONS"))
  869. rt->get_parameter_supported = 1;
  870. } else if (av_stristart(p, "x-Accept-Dynamic-Rate:", &p) && rt) {
  871. p += strspn(p, SPACE_CHARS);
  872. rt->accept_dynamic_rate = atoi(p);
  873. } else if (av_stristart(p, "Content-Type:", &p)) {
  874. p += strspn(p, SPACE_CHARS);
  875. av_strlcpy(reply->content_type, p, sizeof(reply->content_type));
  876. }
  877. }
  878. /* skip a RTP/TCP interleaved packet */
  879. void ff_rtsp_skip_packet(AVFormatContext *s)
  880. {
  881. RTSPState *rt = s->priv_data;
  882. int ret, len, len1;
  883. uint8_t buf[1024];
  884. ret = ffurl_read_complete(rt->rtsp_hd, buf, 3);
  885. if (ret != 3)
  886. return;
  887. len = AV_RB16(buf + 1);
  888. av_dlog(s, "skipping RTP packet len=%d\n", len);
  889. /* skip payload */
  890. while (len > 0) {
  891. len1 = len;
  892. if (len1 > sizeof(buf))
  893. len1 = sizeof(buf);
  894. ret = ffurl_read_complete(rt->rtsp_hd, buf, len1);
  895. if (ret != len1)
  896. return;
  897. len -= len1;
  898. }
  899. }
  900. int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
  901. unsigned char **content_ptr,
  902. int return_on_interleaved_data, const char *method)
  903. {
  904. RTSPState *rt = s->priv_data;
  905. char buf[4096], buf1[1024], *q;
  906. unsigned char ch;
  907. const char *p;
  908. int ret, content_length, line_count = 0, request = 0;
  909. unsigned char *content = NULL;
  910. start:
  911. line_count = 0;
  912. request = 0;
  913. content = NULL;
  914. memset(reply, 0, sizeof(*reply));
  915. /* parse reply (XXX: use buffers) */
  916. rt->last_reply[0] = '\0';
  917. for (;;) {
  918. q = buf;
  919. for (;;) {
  920. ret = ffurl_read_complete(rt->rtsp_hd, &ch, 1);
  921. av_dlog(s, "ret=%d c=%02x [%c]\n", ret, ch, ch);
  922. if (ret != 1)
  923. return AVERROR_EOF;
  924. if (ch == '\n')
  925. break;
  926. if (ch == '$') {
  927. /* XXX: only parse it if first char on line ? */
  928. if (return_on_interleaved_data) {
  929. return 1;
  930. } else
  931. ff_rtsp_skip_packet(s);
  932. } else if (ch != '\r') {
  933. if ((q - buf) < sizeof(buf) - 1)
  934. *q++ = ch;
  935. }
  936. }
  937. *q = '\0';
  938. av_dlog(s, "line='%s'\n", buf);
  939. /* test if last line */
  940. if (buf[0] == '\0')
  941. break;
  942. p = buf;
  943. if (line_count == 0) {
  944. /* get reply code */
  945. get_word(buf1, sizeof(buf1), &p);
  946. if (!strncmp(buf1, "RTSP/", 5)) {
  947. get_word(buf1, sizeof(buf1), &p);
  948. reply->status_code = atoi(buf1);
  949. av_strlcpy(reply->reason, p, sizeof(reply->reason));
  950. } else {
  951. av_strlcpy(reply->reason, buf1, sizeof(reply->reason)); // method
  952. get_word(buf1, sizeof(buf1), &p); // object
  953. request = 1;
  954. }
  955. } else {
  956. ff_rtsp_parse_line(reply, p, rt, method);
  957. av_strlcat(rt->last_reply, p, sizeof(rt->last_reply));
  958. av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply));
  959. }
  960. line_count++;
  961. }
  962. if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0' && !request)
  963. av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id));
  964. content_length = reply->content_length;
  965. if (content_length > 0) {
  966. /* leave some room for a trailing '\0' (useful for simple parsing) */
  967. content = av_malloc(content_length + 1);
  968. ffurl_read_complete(rt->rtsp_hd, content, content_length);
  969. content[content_length] = '\0';
  970. }
  971. if (content_ptr)
  972. *content_ptr = content;
  973. else
  974. av_free(content);
  975. if (request) {
  976. char buf[1024];
  977. char base64buf[AV_BASE64_SIZE(sizeof(buf))];
  978. const char* ptr = buf;
  979. if (!strcmp(reply->reason, "OPTIONS")) {
  980. snprintf(buf, sizeof(buf), "RTSP/1.0 200 OK\r\n");
  981. if (reply->seq)
  982. av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", reply->seq);
  983. if (reply->session_id[0])
  984. av_strlcatf(buf, sizeof(buf), "Session: %s\r\n",
  985. reply->session_id);
  986. } else {
  987. snprintf(buf, sizeof(buf), "RTSP/1.0 501 Not Implemented\r\n");
  988. }
  989. av_strlcat(buf, "\r\n", sizeof(buf));
  990. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  991. av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
  992. ptr = base64buf;
  993. }
  994. ffurl_write(rt->rtsp_hd_out, ptr, strlen(ptr));
  995. rt->last_cmd_time = av_gettime();
  996. /* Even if the request from the server had data, it is not the data
  997. * that the caller wants or expects. The memory could also be leaked
  998. * if the actual following reply has content data. */
  999. if (content_ptr)
  1000. av_freep(content_ptr);
  1001. /* If method is set, this is called from ff_rtsp_send_cmd,
  1002. * where a reply to exactly this request is awaited. For
  1003. * callers from within packet receiving, we just want to
  1004. * return to the caller and go back to receiving packets. */
  1005. if (method)
  1006. goto start;
  1007. return 0;
  1008. }
  1009. if (rt->seq != reply->seq) {
  1010. av_log(s, AV_LOG_WARNING, "CSeq %d expected, %d received.\n",
  1011. rt->seq, reply->seq);
  1012. }
  1013. /* EOS */
  1014. if (reply->notice == 2101 /* End-of-Stream Reached */ ||
  1015. reply->notice == 2104 /* Start-of-Stream Reached */ ||
  1016. reply->notice == 2306 /* Continuous Feed Terminated */) {
  1017. rt->state = RTSP_STATE_IDLE;
  1018. } else if (reply->notice >= 4400 && reply->notice < 5500) {
  1019. return AVERROR(EIO); /* data or server error */
  1020. } else if (reply->notice == 2401 /* Ticket Expired */ ||
  1021. (reply->notice >= 5500 && reply->notice < 5600) /* end of term */ )
  1022. return AVERROR(EPERM);
  1023. return 0;
  1024. }
  1025. /**
  1026. * Send a command to the RTSP server without waiting for the reply.
  1027. *
  1028. * @param s RTSP (de)muxer context
  1029. * @param method the method for the request
  1030. * @param url the target url for the request
  1031. * @param headers extra header lines to include in the request
  1032. * @param send_content if non-null, the data to send as request body content
  1033. * @param send_content_length the length of the send_content data, or 0 if
  1034. * send_content is null
  1035. *
  1036. * @return zero if success, nonzero otherwise
  1037. */
  1038. static int rtsp_send_cmd_with_content_async(AVFormatContext *s,
  1039. const char *method, const char *url,
  1040. const char *headers,
  1041. const unsigned char *send_content,
  1042. int send_content_length)
  1043. {
  1044. RTSPState *rt = s->priv_data;
  1045. char buf[4096], *out_buf;
  1046. char base64buf[AV_BASE64_SIZE(sizeof(buf))];
  1047. /* Add in RTSP headers */
  1048. out_buf = buf;
  1049. rt->seq++;
  1050. snprintf(buf, sizeof(buf), "%s %s RTSP/1.0\r\n", method, url);
  1051. if (headers)
  1052. av_strlcat(buf, headers, sizeof(buf));
  1053. av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", rt->seq);
  1054. if (rt->session_id[0] != '\0' && (!headers ||
  1055. !strstr(headers, "\nIf-Match:"))) {
  1056. av_strlcatf(buf, sizeof(buf), "Session: %s\r\n", rt->session_id);
  1057. }
  1058. if (rt->auth[0]) {
  1059. char *str = ff_http_auth_create_response(&rt->auth_state,
  1060. rt->auth, url, method);
  1061. if (str)
  1062. av_strlcat(buf, str, sizeof(buf));
  1063. av_free(str);
  1064. }
  1065. if (send_content_length > 0 && send_content)
  1066. av_strlcatf(buf, sizeof(buf), "Content-Length: %d\r\n", send_content_length);
  1067. av_strlcat(buf, "\r\n", sizeof(buf));
  1068. /* base64 encode rtsp if tunneling */
  1069. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  1070. av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
  1071. out_buf = base64buf;
  1072. }
  1073. av_dlog(s, "Sending:\n%s--\n", buf);
  1074. ffurl_write(rt->rtsp_hd_out, out_buf, strlen(out_buf));
  1075. if (send_content_length > 0 && send_content) {
  1076. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  1077. av_log(s, AV_LOG_ERROR, "tunneling of RTSP requests "
  1078. "with content data not supported\n");
  1079. return AVERROR_PATCHWELCOME;
  1080. }
  1081. ffurl_write(rt->rtsp_hd_out, send_content, send_content_length);
  1082. }
  1083. rt->last_cmd_time = av_gettime();
  1084. return 0;
  1085. }
  1086. int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method,
  1087. const char *url, const char *headers)
  1088. {
  1089. return rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
  1090. }
  1091. int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url,
  1092. const char *headers, RTSPMessageHeader *reply,
  1093. unsigned char **content_ptr)
  1094. {
  1095. return ff_rtsp_send_cmd_with_content(s, method, url, headers, reply,
  1096. content_ptr, NULL, 0);
  1097. }
  1098. int ff_rtsp_send_cmd_with_content(AVFormatContext *s,
  1099. const char *method, const char *url,
  1100. const char *header,
  1101. RTSPMessageHeader *reply,
  1102. unsigned char **content_ptr,
  1103. const unsigned char *send_content,
  1104. int send_content_length)
  1105. {
  1106. RTSPState *rt = s->priv_data;
  1107. HTTPAuthType cur_auth_type;
  1108. int ret, attempts = 0;
  1109. retry:
  1110. cur_auth_type = rt->auth_state.auth_type;
  1111. if ((ret = rtsp_send_cmd_with_content_async(s, method, url, header,
  1112. send_content,
  1113. send_content_length)))
  1114. return ret;
  1115. if ((ret = ff_rtsp_read_reply(s, reply, content_ptr, 0, method) ) < 0)
  1116. return ret;
  1117. attempts++;
  1118. if (reply->status_code == 401 &&
  1119. (cur_auth_type == HTTP_AUTH_NONE || rt->auth_state.stale) &&
  1120. rt->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2)
  1121. goto retry;
  1122. if (reply->status_code > 400){
  1123. av_log(s, AV_LOG_ERROR, "method %s failed: %d%s\n",
  1124. method,
  1125. reply->status_code,
  1126. reply->reason);
  1127. av_log(s, AV_LOG_DEBUG, "%s\n", rt->last_reply);
  1128. }
  1129. return 0;
  1130. }
  1131. int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
  1132. int lower_transport, const char *real_challenge)
  1133. {
  1134. RTSPState *rt = s->priv_data;
  1135. int rtx = 0, j, i, err, interleave = 0, port_off;
  1136. RTSPStream *rtsp_st;
  1137. RTSPMessageHeader reply1, *reply = &reply1;
  1138. char cmd[2048];
  1139. const char *trans_pref;
  1140. if (rt->transport == RTSP_TRANSPORT_RDT)
  1141. trans_pref = "x-pn-tng";
  1142. else if (rt->transport == RTSP_TRANSPORT_RAW)
  1143. trans_pref = "RAW/RAW";
  1144. else
  1145. trans_pref = "RTP/AVP";
  1146. /* default timeout: 1 minute */
  1147. rt->timeout = 60;
  1148. /* Choose a random starting offset within the first half of the
  1149. * port range, to allow for a number of ports to try even if the offset
  1150. * happens to be at the end of the random range. */
  1151. port_off = av_get_random_seed() % ((rt->rtp_port_max - rt->rtp_port_min)/2);
  1152. /* even random offset */
  1153. port_off -= port_off & 0x01;
  1154. for (j = rt->rtp_port_min + port_off, i = 0; i < rt->nb_rtsp_streams; ++i) {
  1155. char transport[2048];
  1156. /*
  1157. * WMS serves all UDP data over a single connection, the RTX, which
  1158. * isn't necessarily the first in the SDP but has to be the first
  1159. * to be set up, else the second/third SETUP will fail with a 461.
  1160. */
  1161. if (lower_transport == RTSP_LOWER_TRANSPORT_UDP &&
  1162. rt->server_type == RTSP_SERVER_WMS) {
  1163. if (i == 0) {
  1164. /* rtx first */
  1165. for (rtx = 0; rtx < rt->nb_rtsp_streams; rtx++) {
  1166. int len = strlen(rt->rtsp_streams[rtx]->control_url);
  1167. if (len >= 4 &&
  1168. !strcmp(rt->rtsp_streams[rtx]->control_url + len - 4,
  1169. "/rtx"))
  1170. break;
  1171. }
  1172. if (rtx == rt->nb_rtsp_streams)
  1173. return -1; /* no RTX found */
  1174. rtsp_st = rt->rtsp_streams[rtx];
  1175. } else
  1176. rtsp_st = rt->rtsp_streams[i > rtx ? i : i - 1];
  1177. } else
  1178. rtsp_st = rt->rtsp_streams[i];
  1179. /* RTP/UDP */
  1180. if (lower_transport == RTSP_LOWER_TRANSPORT_UDP) {
  1181. char buf[256];
  1182. if (rt->server_type == RTSP_SERVER_WMS && i > 1) {
  1183. port = reply->transports[0].client_port_min;
  1184. goto have_port;
  1185. }
  1186. /* first try in specified port range */
  1187. while (j <= rt->rtp_port_max) {
  1188. ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
  1189. "?localport=%d", j);
  1190. /* we will use two ports per rtp stream (rtp and rtcp) */
  1191. j += 2;
  1192. if (!ffurl_open(&rtsp_st->rtp_handle, buf, AVIO_FLAG_READ_WRITE,
  1193. &s->interrupt_callback, NULL))
  1194. goto rtp_opened;
  1195. }
  1196. av_log(s, AV_LOG_ERROR, "Unable to open an input RTP port\n");
  1197. err = AVERROR(EIO);
  1198. goto fail;
  1199. rtp_opened:
  1200. port = ff_rtp_get_local_rtp_port(rtsp_st->rtp_handle);
  1201. have_port:
  1202. snprintf(transport, sizeof(transport) - 1,
  1203. "%s/UDP;", trans_pref);
  1204. if (rt->server_type != RTSP_SERVER_REAL)
  1205. av_strlcat(transport, "unicast;", sizeof(transport));
  1206. av_strlcatf(transport, sizeof(transport),
  1207. "client_port=%d", port);
  1208. if (rt->transport == RTSP_TRANSPORT_RTP &&
  1209. !(rt->server_type == RTSP_SERVER_WMS && i > 0))
  1210. av_strlcatf(transport, sizeof(transport), "-%d", port + 1);
  1211. }
  1212. /* RTP/TCP */
  1213. else if (lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
  1214. /* For WMS streams, the application streams are only used for
  1215. * UDP. When trying to set it up for TCP streams, the server
  1216. * will return an error. Therefore, we skip those streams. */
  1217. if (rt->server_type == RTSP_SERVER_WMS &&
  1218. (rtsp_st->stream_index < 0 ||
  1219. s->streams[rtsp_st->stream_index]->codec->codec_type ==
  1220. AVMEDIA_TYPE_DATA))
  1221. continue;
  1222. snprintf(transport, sizeof(transport) - 1,
  1223. "%s/TCP;", trans_pref);
  1224. if (rt->transport != RTSP_TRANSPORT_RDT)
  1225. av_strlcat(transport, "unicast;", sizeof(transport));
  1226. av_strlcatf(transport, sizeof(transport),
  1227. "interleaved=%d-%d",
  1228. interleave, interleave + 1);
  1229. interleave += 2;
  1230. }
  1231. else if (lower_transport == RTSP_LOWER_TRANSPORT_UDP_MULTICAST) {
  1232. snprintf(transport, sizeof(transport) - 1,
  1233. "%s/UDP;multicast", trans_pref);
  1234. }
  1235. if (s->oformat) {
  1236. av_strlcat(transport, ";mode=record", sizeof(transport));
  1237. } else if (rt->server_type == RTSP_SERVER_REAL ||
  1238. rt->server_type == RTSP_SERVER_WMS)
  1239. av_strlcat(transport, ";mode=play", sizeof(transport));
  1240. snprintf(cmd, sizeof(cmd),
  1241. "Transport: %s\r\n",
  1242. transport);
  1243. if (rt->accept_dynamic_rate)
  1244. av_strlcat(cmd, "x-Dynamic-Rate: 0\r\n", sizeof(cmd));
  1245. if (i == 0 && rt->server_type == RTSP_SERVER_REAL && CONFIG_RTPDEC) {
  1246. char real_res[41], real_csum[9];
  1247. ff_rdt_calc_response_and_checksum(real_res, real_csum,
  1248. real_challenge);
  1249. av_strlcatf(cmd, sizeof(cmd),
  1250. "If-Match: %s\r\n"
  1251. "RealChallenge2: %s, sd=%s\r\n",
  1252. rt->session_id, real_res, real_csum);
  1253. }
  1254. ff_rtsp_send_cmd(s, "SETUP", rtsp_st->control_url, cmd, reply, NULL);
  1255. if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) {
  1256. err = 1;
  1257. goto fail;
  1258. } else if (reply->status_code != RTSP_STATUS_OK ||
  1259. reply->nb_transports != 1) {
  1260. err = AVERROR_INVALIDDATA;
  1261. goto fail;
  1262. }
  1263. /* XXX: same protocol for all streams is required */
  1264. if (i > 0) {
  1265. if (reply->transports[0].lower_transport != rt->lower_transport ||
  1266. reply->transports[0].transport != rt->transport) {
  1267. err = AVERROR_INVALIDDATA;
  1268. goto fail;
  1269. }
  1270. } else {
  1271. rt->lower_transport = reply->transports[0].lower_transport;
  1272. rt->transport = reply->transports[0].transport;
  1273. }
  1274. /* Fail if the server responded with another lower transport mode
  1275. * than what we requested. */
  1276. if (reply->transports[0].lower_transport != lower_transport) {
  1277. av_log(s, AV_LOG_ERROR, "Nonmatching transport in server reply\n");
  1278. err = AVERROR_INVALIDDATA;
  1279. goto fail;
  1280. }
  1281. switch(reply->transports[0].lower_transport) {
  1282. case RTSP_LOWER_TRANSPORT_TCP:
  1283. rtsp_st->interleaved_min = reply->transports[0].interleaved_min;
  1284. rtsp_st->interleaved_max = reply->transports[0].interleaved_max;
  1285. break;
  1286. case RTSP_LOWER_TRANSPORT_UDP: {
  1287. char url[1024], options[30] = "";
  1288. if (rt->rtsp_flags & RTSP_FLAG_FILTER_SRC)
  1289. av_strlcpy(options, "?connect=1", sizeof(options));
  1290. /* Use source address if specified */
  1291. if (reply->transports[0].source[0]) {
  1292. ff_url_join(url, sizeof(url), "rtp", NULL,
  1293. reply->transports[0].source,
  1294. reply->transports[0].server_port_min, "%s", options);
  1295. } else {
  1296. ff_url_join(url, sizeof(url), "rtp", NULL, host,
  1297. reply->transports[0].server_port_min, "%s", options);
  1298. }
  1299. if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) &&
  1300. ff_rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) {
  1301. err = AVERROR_INVALIDDATA;
  1302. goto fail;
  1303. }
  1304. /* Try to initialize the connection state in a
  1305. * potential NAT router by sending dummy packets.
  1306. * RTP/RTCP dummy packets are used for RDT, too.
  1307. */
  1308. if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) && s->iformat &&
  1309. CONFIG_RTPDEC)
  1310. ff_rtp_send_punch_packets(rtsp_st->rtp_handle);
  1311. break;
  1312. }
  1313. case RTSP_LOWER_TRANSPORT_UDP_MULTICAST: {
  1314. char url[1024], namebuf[50], optbuf[20] = "";
  1315. struct sockaddr_storage addr;
  1316. int port, ttl;
  1317. if (reply->transports[0].destination.ss_family) {
  1318. addr = reply->transports[0].destination;
  1319. port = reply->transports[0].port_min;
  1320. ttl = reply->transports[0].ttl;
  1321. } else {
  1322. addr = rtsp_st->sdp_ip;
  1323. port = rtsp_st->sdp_port;
  1324. ttl = rtsp_st->sdp_ttl;
  1325. }
  1326. if (ttl > 0)
  1327. snprintf(optbuf, sizeof(optbuf), "?ttl=%d", ttl);
  1328. getnameinfo((struct sockaddr*) &addr, sizeof(addr),
  1329. namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
  1330. ff_url_join(url, sizeof(url), "rtp", NULL, namebuf,
  1331. port, "%s", optbuf);
  1332. if (ffurl_open(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ_WRITE,
  1333. &s->interrupt_callback, NULL) < 0) {
  1334. err = AVERROR_INVALIDDATA;
  1335. goto fail;
  1336. }
  1337. break;
  1338. }
  1339. }
  1340. if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
  1341. goto fail;
  1342. }
  1343. if (rt->nb_rtsp_streams && reply->timeout > 0)
  1344. rt->timeout = reply->timeout;
  1345. if (rt->server_type == RTSP_SERVER_REAL)
  1346. rt->need_subscription = 1;
  1347. return 0;
  1348. fail:
  1349. ff_rtsp_undo_setup(s);
  1350. return err;
  1351. }
  1352. void ff_rtsp_close_connections(AVFormatContext *s)
  1353. {
  1354. RTSPState *rt = s->priv_data;
  1355. if (rt->rtsp_hd_out != rt->rtsp_hd) ffurl_close(rt->rtsp_hd_out);
  1356. ffurl_close(rt->rtsp_hd);
  1357. rt->rtsp_hd = rt->rtsp_hd_out = NULL;
  1358. }
  1359. int ff_rtsp_connect(AVFormatContext *s)
  1360. {
  1361. RTSPState *rt = s->priv_data;
  1362. char host[1024], path[1024], tcpname[1024], cmd[2048], auth[128];
  1363. int port, err, tcp_fd;
  1364. RTSPMessageHeader reply1 = {0}, *reply = &reply1;
  1365. int lower_transport_mask = 0;
  1366. char real_challenge[64] = "";
  1367. struct sockaddr_storage peer;
  1368. socklen_t peer_len = sizeof(peer);
  1369. if (rt->rtp_port_max < rt->rtp_port_min) {
  1370. av_log(s, AV_LOG_ERROR, "Invalid UDP port range, max port %d less "
  1371. "than min port %d\n", rt->rtp_port_max,
  1372. rt->rtp_port_min);
  1373. return AVERROR(EINVAL);
  1374. }
  1375. if (!ff_network_init())
  1376. return AVERROR(EIO);
  1377. if (s->max_delay < 0) /* Not set by the caller */
  1378. s->max_delay = s->iformat ? DEFAULT_REORDERING_DELAY : 0;
  1379. rt->control_transport = RTSP_MODE_PLAIN;
  1380. if (rt->lower_transport_mask & (1 << RTSP_LOWER_TRANSPORT_HTTP)) {
  1381. rt->lower_transport_mask = 1 << RTSP_LOWER_TRANSPORT_TCP;
  1382. rt->control_transport = RTSP_MODE_TUNNEL;
  1383. }
  1384. /* Only pass through valid flags from here */
  1385. rt->lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
  1386. redirect:
  1387. lower_transport_mask = rt->lower_transport_mask;
  1388. /* extract hostname and port */
  1389. av_url_split(NULL, 0, auth, sizeof(auth),
  1390. host, sizeof(host), &port, path, sizeof(path), s->filename);
  1391. if (*auth) {
  1392. av_strlcpy(rt->auth, auth, sizeof(rt->auth));
  1393. }
  1394. if (port < 0)
  1395. port = RTSP_DEFAULT_PORT;
  1396. if (!lower_transport_mask)
  1397. lower_transport_mask = (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
  1398. if (s->oformat) {
  1399. /* Only UDP or TCP - UDP multicast isn't supported. */
  1400. lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_UDP) |
  1401. (1 << RTSP_LOWER_TRANSPORT_TCP);
  1402. if (!lower_transport_mask || rt->control_transport == RTSP_MODE_TUNNEL) {
  1403. av_log(s, AV_LOG_ERROR, "Unsupported lower transport method, "
  1404. "only UDP and TCP are supported for output.\n");
  1405. err = AVERROR(EINVAL);
  1406. goto fail;
  1407. }
  1408. }
  1409. /* Construct the URI used in request; this is similar to s->filename,
  1410. * but with authentication credentials removed and RTSP specific options
  1411. * stripped out. */
  1412. ff_url_join(rt->control_uri, sizeof(rt->control_uri), "rtsp", NULL,
  1413. host, port, "%s", path);
  1414. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  1415. /* set up initial handshake for tunneling */
  1416. char httpname[1024];
  1417. char sessioncookie[17];
  1418. char headers[1024];
  1419. ff_url_join(httpname, sizeof(httpname), "http", auth, host, port, "%s", path);
  1420. snprintf(sessioncookie, sizeof(sessioncookie), "%08x%08x",
  1421. av_get_random_seed(), av_get_random_seed());
  1422. /* GET requests */
  1423. if (ffurl_alloc(&rt->rtsp_hd, httpname, AVIO_FLAG_READ,
  1424. &s->interrupt_callback) < 0) {
  1425. err = AVERROR(EIO);
  1426. goto fail;
  1427. }
  1428. /* generate GET headers */
  1429. snprintf(headers, sizeof(headers),
  1430. "x-sessioncookie: %s\r\n"
  1431. "Accept: application/x-rtsp-tunnelled\r\n"
  1432. "Pragma: no-cache\r\n"
  1433. "Cache-Control: no-cache\r\n",
  1434. sessioncookie);
  1435. av_opt_set(rt->rtsp_hd->priv_data, "headers", headers, 0);
  1436. /* complete the connection */
  1437. if (ffurl_connect(rt->rtsp_hd, NULL)) {
  1438. err = AVERROR(EIO);
  1439. goto fail;
  1440. }
  1441. /* POST requests */
  1442. if (ffurl_alloc(&rt->rtsp_hd_out, httpname, AVIO_FLAG_WRITE,
  1443. &s->interrupt_callback) < 0 ) {
  1444. err = AVERROR(EIO);
  1445. goto fail;
  1446. }
  1447. /* generate POST headers */
  1448. snprintf(headers, sizeof(headers),
  1449. "x-sessioncookie: %s\r\n"
  1450. "Content-Type: application/x-rtsp-tunnelled\r\n"
  1451. "Pragma: no-cache\r\n"
  1452. "Cache-Control: no-cache\r\n"
  1453. "Content-Length: 32767\r\n"
  1454. "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n",
  1455. sessioncookie);
  1456. av_opt_set(rt->rtsp_hd_out->priv_data, "headers", headers, 0);
  1457. av_opt_set(rt->rtsp_hd_out->priv_data, "chunked_post", "0", 0);
  1458. /* Initialize the authentication state for the POST session. The HTTP
  1459. * protocol implementation doesn't properly handle multi-pass
  1460. * authentication for POST requests, since it would require one of
  1461. * the following:
  1462. * - implementing Expect: 100-continue, which many HTTP servers
  1463. * don't support anyway, even less the RTSP servers that do HTTP
  1464. * tunneling
  1465. * - sending the whole POST data until getting a 401 reply specifying
  1466. * what authentication method to use, then resending all that data
  1467. * - waiting for potential 401 replies directly after sending the
  1468. * POST header (waiting for some unspecified time)
  1469. * Therefore, we copy the full auth state, which works for both basic
  1470. * and digest. (For digest, we would have to synchronize the nonce
  1471. * count variable between the two sessions, if we'd do more requests
  1472. * with the original session, though.)
  1473. */
  1474. ff_http_init_auth_state(rt->rtsp_hd_out, rt->rtsp_hd);
  1475. /* complete the connection */
  1476. if (ffurl_connect(rt->rtsp_hd_out, NULL)) {
  1477. err = AVERROR(EIO);
  1478. goto fail;
  1479. }
  1480. } else {
  1481. /* open the tcp connection */
  1482. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port,
  1483. "?timeout=%d", rt->stimeout);
  1484. if (ffurl_open(&rt->rtsp_hd, tcpname, AVIO_FLAG_READ_WRITE,
  1485. &s->interrupt_callback, NULL) < 0) {
  1486. err = AVERROR(EIO);
  1487. goto fail;
  1488. }
  1489. rt->rtsp_hd_out = rt->rtsp_hd;
  1490. }
  1491. rt->seq = 0;
  1492. tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
  1493. if (!getpeername(tcp_fd, (struct sockaddr*) &peer, &peer_len)) {
  1494. getnameinfo((struct sockaddr*) &peer, peer_len, host, sizeof(host),
  1495. NULL, 0, NI_NUMERICHOST);
  1496. }
  1497. /* request options supported by the server; this also detects server
  1498. * type */
  1499. for (rt->server_type = RTSP_SERVER_RTP;;) {
  1500. cmd[0] = 0;
  1501. if (rt->server_type == RTSP_SERVER_REAL)
  1502. av_strlcat(cmd,
  1503. /*
  1504. * The following entries are required for proper
  1505. * streaming from a Realmedia server. They are
  1506. * interdependent in some way although we currently
  1507. * don't quite understand how. Values were copied
  1508. * from mplayer SVN r23589.
  1509. * ClientChallenge is a 16-byte ID in hex
  1510. * CompanyID is a 16-byte ID in base64
  1511. */
  1512. "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
  1513. "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
  1514. "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
  1515. "GUID: 00000000-0000-0000-0000-000000000000\r\n",
  1516. sizeof(cmd));
  1517. ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL);
  1518. if (reply->status_code != RTSP_STATUS_OK) {
  1519. err = AVERROR_INVALIDDATA;
  1520. goto fail;
  1521. }
  1522. /* detect server type if not standard-compliant RTP */
  1523. if (rt->server_type != RTSP_SERVER_REAL && reply->real_challenge[0]) {
  1524. rt->server_type = RTSP_SERVER_REAL;
  1525. continue;
  1526. } else if (!av_strncasecmp(reply->server, "WMServer/", 9)) {
  1527. rt->server_type = RTSP_SERVER_WMS;
  1528. } else if (rt->server_type == RTSP_SERVER_REAL)
  1529. strcpy(real_challenge, reply->real_challenge);
  1530. break;
  1531. }
  1532. if (s->iformat && CONFIG_RTSP_DEMUXER)
  1533. err = ff_rtsp_setup_input_streams(s, reply);
  1534. else if (CONFIG_RTSP_MUXER)
  1535. err = ff_rtsp_setup_output_streams(s, host);
  1536. if (err)
  1537. goto fail;
  1538. do {
  1539. int lower_transport = ff_log2_tab[lower_transport_mask &
  1540. ~(lower_transport_mask - 1)];
  1541. err = ff_rtsp_make_setup_request(s, host, port, lower_transport,
  1542. rt->server_type == RTSP_SERVER_REAL ?
  1543. real_challenge : NULL);
  1544. if (err < 0)
  1545. goto fail;
  1546. lower_transport_mask &= ~(1 << lower_transport);
  1547. if (lower_transport_mask == 0 && err == 1) {
  1548. err = AVERROR(EPROTONOSUPPORT);
  1549. goto fail;
  1550. }
  1551. } while (err);
  1552. rt->lower_transport_mask = lower_transport_mask;
  1553. av_strlcpy(rt->real_challenge, real_challenge, sizeof(rt->real_challenge));
  1554. rt->state = RTSP_STATE_IDLE;
  1555. rt->seek_timestamp = 0; /* default is to start stream at position zero */
  1556. return 0;
  1557. fail:
  1558. ff_rtsp_close_streams(s);
  1559. ff_rtsp_close_connections(s);
  1560. if (reply->status_code >=300 && reply->status_code < 400 && s->iformat) {
  1561. av_strlcpy(s->filename, reply->location, sizeof(s->filename));
  1562. av_log(s, AV_LOG_INFO, "Status %d: Redirecting to %s\n",
  1563. reply->status_code,
  1564. s->filename);
  1565. goto redirect;
  1566. }
  1567. ff_network_close();
  1568. return err;
  1569. }
  1570. #endif /* CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER */
  1571. #if CONFIG_RTPDEC
  1572. static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
  1573. uint8_t *buf, int buf_size, int64_t wait_end)
  1574. {
  1575. RTSPState *rt = s->priv_data;
  1576. RTSPStream *rtsp_st;
  1577. int n, i, ret, tcp_fd, timeout_cnt = 0;
  1578. int max_p = 0;
  1579. struct pollfd *p = rt->p;
  1580. int *fds = NULL, fdsnum, fdsidx;
  1581. for (;;) {
  1582. if (ff_check_interrupt(&s->interrupt_callback))
  1583. return AVERROR_EXIT;
  1584. if (wait_end && wait_end - av_gettime() < 0)
  1585. return AVERROR(EAGAIN);
  1586. max_p = 0;
  1587. if (rt->rtsp_hd) {
  1588. tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
  1589. p[max_p].fd = tcp_fd;
  1590. p[max_p++].events = POLLIN;
  1591. } else {
  1592. tcp_fd = -1;
  1593. }
  1594. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1595. rtsp_st = rt->rtsp_streams[i];
  1596. if (rtsp_st->rtp_handle) {
  1597. if (ret = ffurl_get_multi_file_handle(rtsp_st->rtp_handle,
  1598. &fds, &fdsnum)) {
  1599. av_log(s, AV_LOG_ERROR, "Unable to recover rtp ports\n");
  1600. return ret;
  1601. }
  1602. if (fdsnum != 2) {
  1603. av_log(s, AV_LOG_ERROR,
  1604. "Number of fds %d not supported\n", fdsnum);
  1605. return AVERROR_INVALIDDATA;
  1606. }
  1607. for (fdsidx = 0; fdsidx < fdsnum; fdsidx++) {
  1608. p[max_p].fd = fds[fdsidx];
  1609. p[max_p++].events = POLLIN;
  1610. }
  1611. av_free(fds);
  1612. }
  1613. }
  1614. n = poll(p, max_p, POLL_TIMEOUT_MS);
  1615. if (n > 0) {
  1616. int j = 1 - (tcp_fd == -1);
  1617. timeout_cnt = 0;
  1618. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1619. rtsp_st = rt->rtsp_streams[i];
  1620. if (rtsp_st->rtp_handle) {
  1621. if (p[j].revents & POLLIN || p[j+1].revents & POLLIN) {
  1622. ret = ffurl_read(rtsp_st->rtp_handle, buf, buf_size);
  1623. if (ret > 0) {
  1624. *prtsp_st = rtsp_st;
  1625. return ret;
  1626. }
  1627. }
  1628. j+=2;
  1629. }
  1630. }
  1631. #if CONFIG_RTSP_DEMUXER
  1632. if (tcp_fd != -1 && p[0].revents & POLLIN) {
  1633. if (rt->rtsp_flags & RTSP_FLAG_LISTEN) {
  1634. if (rt->state == RTSP_STATE_STREAMING) {
  1635. if (!ff_rtsp_parse_streaming_commands(s))
  1636. return AVERROR_EOF;
  1637. else
  1638. av_log(s, AV_LOG_WARNING,
  1639. "Unable to answer to TEARDOWN\n");
  1640. } else
  1641. return 0;
  1642. } else {
  1643. RTSPMessageHeader reply;
  1644. ret = ff_rtsp_read_reply(s, &reply, NULL, 0, NULL);
  1645. if (ret < 0)
  1646. return ret;
  1647. /* XXX: parse message */
  1648. if (rt->state != RTSP_STATE_STREAMING)
  1649. return 0;
  1650. }
  1651. }
  1652. #endif
  1653. } else if (n == 0 && ++timeout_cnt >= MAX_TIMEOUTS) {
  1654. return AVERROR(ETIMEDOUT);
  1655. } else if (n < 0 && errno != EINTR)
  1656. return AVERROR(errno);
  1657. }
  1658. }
  1659. static int pick_stream(AVFormatContext *s, RTSPStream **rtsp_st,
  1660. const uint8_t *buf, int len)
  1661. {
  1662. RTSPState *rt = s->priv_data;
  1663. int i;
  1664. if (len < 0)
  1665. return len;
  1666. if (rt->nb_rtsp_streams == 1) {
  1667. *rtsp_st = rt->rtsp_streams[0];
  1668. return len;
  1669. }
  1670. if (len >= 8 && rt->transport == RTSP_TRANSPORT_RTP) {
  1671. if (RTP_PT_IS_RTCP(rt->recvbuf[1])) {
  1672. int no_ssrc = 0;
  1673. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1674. RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
  1675. if (!rtpctx)
  1676. continue;
  1677. if (rtpctx->ssrc == AV_RB32(&buf[4])) {
  1678. *rtsp_st = rt->rtsp_streams[i];
  1679. return len;
  1680. }
  1681. if (!rtpctx->ssrc)
  1682. no_ssrc = 1;
  1683. }
  1684. if (no_ssrc) {
  1685. av_log(s, AV_LOG_WARNING,
  1686. "Unable to pick stream for packet - SSRC not known for "
  1687. "all streams\n");
  1688. return AVERROR(EAGAIN);
  1689. }
  1690. } else {
  1691. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1692. if ((buf[1] & 0x7f) == rt->rtsp_streams[i]->sdp_payload_type) {
  1693. *rtsp_st = rt->rtsp_streams[i];
  1694. return len;
  1695. }
  1696. }
  1697. }
  1698. }
  1699. av_log(s, AV_LOG_WARNING, "Unable to pick stream for packet\n");
  1700. return AVERROR(EAGAIN);
  1701. }
  1702. int ff_rtsp_fetch_packet(AVFormatContext *s, AVPacket *pkt)
  1703. {
  1704. RTSPState *rt = s->priv_data;
  1705. int ret, len;
  1706. RTSPStream *rtsp_st, *first_queue_st = NULL;
  1707. int64_t wait_end = 0;
  1708. if (rt->nb_byes == rt->nb_rtsp_streams)
  1709. return AVERROR_EOF;
  1710. /* get next frames from the same RTP packet */
  1711. if (rt->cur_transport_priv) {
  1712. if (rt->transport == RTSP_TRANSPORT_RDT) {
  1713. ret = ff_rdt_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
  1714. } else if (rt->transport == RTSP_TRANSPORT_RTP) {
  1715. ret = ff_rtp_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
  1716. } else if (rt->ts && CONFIG_RTPDEC) {
  1717. ret = ff_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf + rt->recvbuf_pos, rt->recvbuf_len - rt->recvbuf_pos);
  1718. if (ret >= 0) {
  1719. rt->recvbuf_pos += ret;
  1720. ret = rt->recvbuf_pos < rt->recvbuf_len;
  1721. }
  1722. } else
  1723. ret = -1;
  1724. if (ret == 0) {
  1725. rt->cur_transport_priv = NULL;
  1726. return 0;
  1727. } else if (ret == 1) {
  1728. return 0;
  1729. } else
  1730. rt->cur_transport_priv = NULL;
  1731. }
  1732. redo:
  1733. if (rt->transport == RTSP_TRANSPORT_RTP) {
  1734. int i;
  1735. int64_t first_queue_time = 0;
  1736. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1737. RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
  1738. int64_t queue_time;
  1739. if (!rtpctx)
  1740. continue;
  1741. queue_time = ff_rtp_queued_packet_time(rtpctx);
  1742. if (queue_time && (queue_time - first_queue_time < 0 ||
  1743. !first_queue_time)) {
  1744. first_queue_time = queue_time;
  1745. first_queue_st = rt->rtsp_streams[i];
  1746. }
  1747. }
  1748. if (first_queue_time) {
  1749. wait_end = first_queue_time + s->max_delay;
  1750. } else {
  1751. wait_end = 0;
  1752. first_queue_st = NULL;
  1753. }
  1754. }
  1755. /* read next RTP packet */
  1756. if (!rt->recvbuf) {
  1757. rt->recvbuf = av_malloc(RECVBUF_SIZE);
  1758. if (!rt->recvbuf)
  1759. return AVERROR(ENOMEM);
  1760. }
  1761. switch(rt->lower_transport) {
  1762. default:
  1763. #if CONFIG_RTSP_DEMUXER
  1764. case RTSP_LOWER_TRANSPORT_TCP:
  1765. len = ff_rtsp_tcp_read_packet(s, &rtsp_st, rt->recvbuf, RECVBUF_SIZE);
  1766. break;
  1767. #endif
  1768. case RTSP_LOWER_TRANSPORT_UDP:
  1769. case RTSP_LOWER_TRANSPORT_UDP_MULTICAST:
  1770. len = udp_read_packet(s, &rtsp_st, rt->recvbuf, RECVBUF_SIZE, wait_end);
  1771. if (len > 0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
  1772. ff_rtp_check_and_send_back_rr(rtsp_st->transport_priv, rtsp_st->rtp_handle, NULL, len);
  1773. break;
  1774. case RTSP_LOWER_TRANSPORT_CUSTOM:
  1775. if (first_queue_st && rt->transport == RTSP_TRANSPORT_RTP &&
  1776. wait_end && wait_end < av_gettime())
  1777. len = AVERROR(EAGAIN);
  1778. else
  1779. len = ffio_read_partial(s->pb, rt->recvbuf, RECVBUF_SIZE);
  1780. len = pick_stream(s, &rtsp_st, rt->recvbuf, len);
  1781. if (len > 0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
  1782. ff_rtp_check_and_send_back_rr(rtsp_st->transport_priv, NULL, s->pb, len);
  1783. break;
  1784. }
  1785. if (len == AVERROR(EAGAIN) && first_queue_st &&
  1786. rt->transport == RTSP_TRANSPORT_RTP) {
  1787. rtsp_st = first_queue_st;
  1788. ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, NULL, 0);
  1789. goto end;
  1790. }
  1791. if (len < 0)
  1792. return len;
  1793. if (len == 0)
  1794. return AVERROR_EOF;
  1795. if (rt->transport == RTSP_TRANSPORT_RDT) {
  1796. ret = ff_rdt_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
  1797. } else if (rt->transport == RTSP_TRANSPORT_RTP) {
  1798. ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
  1799. if (rtsp_st->feedback) {
  1800. AVIOContext *pb = NULL;
  1801. if (rt->lower_transport == RTSP_LOWER_TRANSPORT_CUSTOM)
  1802. pb = s->pb;
  1803. ff_rtp_send_rtcp_feedback(rtsp_st->transport_priv, rtsp_st->rtp_handle, pb);
  1804. }
  1805. if (ret < 0) {
  1806. /* Either bad packet, or a RTCP packet. Check if the
  1807. * first_rtcp_ntp_time field was initialized. */
  1808. RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
  1809. if (rtpctx->first_rtcp_ntp_time != AV_NOPTS_VALUE) {
  1810. /* first_rtcp_ntp_time has been initialized for this stream,
  1811. * copy the same value to all other uninitialized streams,
  1812. * in order to map their timestamp origin to the same ntp time
  1813. * as this one. */
  1814. int i;
  1815. AVStream *st = NULL;
  1816. if (rtsp_st->stream_index >= 0)
  1817. st = s->streams[rtsp_st->stream_index];
  1818. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1819. RTPDemuxContext *rtpctx2 = rt->rtsp_streams[i]->transport_priv;
  1820. AVStream *st2 = NULL;
  1821. if (rt->rtsp_streams[i]->stream_index >= 0)
  1822. st2 = s->streams[rt->rtsp_streams[i]->stream_index];
  1823. if (rtpctx2 && st && st2 &&
  1824. rtpctx2->first_rtcp_ntp_time == AV_NOPTS_VALUE) {
  1825. rtpctx2->first_rtcp_ntp_time = rtpctx->first_rtcp_ntp_time;
  1826. rtpctx2->rtcp_ts_offset = av_rescale_q(
  1827. rtpctx->rtcp_ts_offset, st->time_base,
  1828. st2->time_base);
  1829. }
  1830. }
  1831. }
  1832. if (ret == -RTCP_BYE) {
  1833. rt->nb_byes++;
  1834. av_log(s, AV_LOG_DEBUG, "Received BYE for stream %d (%d/%d)\n",
  1835. rtsp_st->stream_index, rt->nb_byes, rt->nb_rtsp_streams);
  1836. if (rt->nb_byes == rt->nb_rtsp_streams)
  1837. return AVERROR_EOF;
  1838. }
  1839. }
  1840. } else if (rt->ts && CONFIG_RTPDEC) {
  1841. ret = ff_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf, len);
  1842. if (ret >= 0) {
  1843. if (ret < len) {
  1844. rt->recvbuf_len = len;
  1845. rt->recvbuf_pos = ret;
  1846. rt->cur_transport_priv = rt->ts;
  1847. return 1;
  1848. } else {
  1849. ret = 0;
  1850. }
  1851. }
  1852. } else {
  1853. return AVERROR_INVALIDDATA;
  1854. }
  1855. end:
  1856. if (ret < 0)
  1857. goto redo;
  1858. if (ret == 1)
  1859. /* more packets may follow, so we save the RTP context */
  1860. rt->cur_transport_priv = rtsp_st->transport_priv;
  1861. return ret;
  1862. }
  1863. #endif /* CONFIG_RTPDEC */
  1864. #if CONFIG_SDP_DEMUXER
  1865. static int sdp_probe(AVProbeData *p1)
  1866. {
  1867. const char *p = p1->buf, *p_end = p1->buf + p1->buf_size;
  1868. /* we look for a line beginning "c=IN IP" */
  1869. while (p < p_end && *p != '\0') {
  1870. if (p + sizeof("c=IN IP") - 1 < p_end &&
  1871. av_strstart(p, "c=IN IP", NULL))
  1872. return AVPROBE_SCORE_EXTENSION;
  1873. while (p < p_end - 1 && *p != '\n') p++;
  1874. if (++p >= p_end)
  1875. break;
  1876. if (*p == '\r')
  1877. p++;
  1878. }
  1879. return 0;
  1880. }
  1881. static int sdp_read_header(AVFormatContext *s)
  1882. {
  1883. RTSPState *rt = s->priv_data;
  1884. RTSPStream *rtsp_st;
  1885. int size, i, err;
  1886. char *content;
  1887. char url[1024];
  1888. if (!ff_network_init())
  1889. return AVERROR(EIO);
  1890. if (s->max_delay < 0) /* Not set by the caller */
  1891. s->max_delay = DEFAULT_REORDERING_DELAY;
  1892. if (rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)
  1893. rt->lower_transport = RTSP_LOWER_TRANSPORT_CUSTOM;
  1894. /* read the whole sdp file */
  1895. /* XXX: better loading */
  1896. content = av_malloc(SDP_MAX_SIZE);
  1897. size = avio_read(s->pb, content, SDP_MAX_SIZE - 1);
  1898. if (size <= 0) {
  1899. av_free(content);
  1900. return AVERROR_INVALIDDATA;
  1901. }
  1902. content[size] ='\0';
  1903. err = ff_sdp_parse(s, content);
  1904. av_free(content);
  1905. if (err) goto fail;
  1906. /* open each RTP stream */
  1907. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1908. char namebuf[50];
  1909. rtsp_st = rt->rtsp_streams[i];
  1910. if (!(rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)) {
  1911. getnameinfo((struct sockaddr*) &rtsp_st->sdp_ip, sizeof(rtsp_st->sdp_ip),
  1912. namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
  1913. ff_url_join(url, sizeof(url), "rtp", NULL,
  1914. namebuf, rtsp_st->sdp_port,
  1915. "?localport=%d&ttl=%d&connect=%d", rtsp_st->sdp_port,
  1916. rtsp_st->sdp_ttl,
  1917. rt->rtsp_flags & RTSP_FLAG_FILTER_SRC ? 1 : 0);
  1918. if (ffurl_open(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ_WRITE,
  1919. &s->interrupt_callback, NULL) < 0) {
  1920. err = AVERROR_INVALIDDATA;
  1921. goto fail;
  1922. }
  1923. }
  1924. if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
  1925. goto fail;
  1926. }
  1927. return 0;
  1928. fail:
  1929. ff_rtsp_close_streams(s);
  1930. ff_network_close();
  1931. return err;
  1932. }
  1933. static int sdp_read_close(AVFormatContext *s)
  1934. {
  1935. ff_rtsp_close_streams(s);
  1936. ff_network_close();
  1937. return 0;
  1938. }
  1939. static const AVClass sdp_demuxer_class = {
  1940. .class_name = "SDP demuxer",
  1941. .item_name = av_default_item_name,
  1942. .option = sdp_options,
  1943. .version = LIBAVUTIL_VERSION_INT,
  1944. };
  1945. AVInputFormat ff_sdp_demuxer = {
  1946. .name = "sdp",
  1947. .long_name = NULL_IF_CONFIG_SMALL("SDP"),
  1948. .priv_data_size = sizeof(RTSPState),
  1949. .read_probe = sdp_probe,
  1950. .read_header = sdp_read_header,
  1951. .read_packet = ff_rtsp_fetch_packet,
  1952. .read_close = sdp_read_close,
  1953. .priv_class = &sdp_demuxer_class,
  1954. };
  1955. #endif /* CONFIG_SDP_DEMUXER */
  1956. #if CONFIG_RTP_DEMUXER
  1957. static int rtp_probe(AVProbeData *p)
  1958. {
  1959. if (av_strstart(p->filename, "rtp:", NULL))
  1960. return AVPROBE_SCORE_MAX;
  1961. return 0;
  1962. }
  1963. static int rtp_read_header(AVFormatContext *s)
  1964. {
  1965. uint8_t recvbuf[RTP_MAX_PACKET_LENGTH];
  1966. char host[500], sdp[500];
  1967. int ret, port;
  1968. URLContext* in = NULL;
  1969. int payload_type;
  1970. AVCodecContext codec = { 0 };
  1971. struct sockaddr_storage addr;
  1972. AVIOContext pb;
  1973. socklen_t addrlen = sizeof(addr);
  1974. RTSPState *rt = s->priv_data;
  1975. if (!ff_network_init())
  1976. return AVERROR(EIO);
  1977. ret = ffurl_open(&in, s->filename, AVIO_FLAG_READ,
  1978. &s->interrupt_callback, NULL);
  1979. if (ret)
  1980. goto fail;
  1981. while (1) {
  1982. ret = ffurl_read(in, recvbuf, sizeof(recvbuf));
  1983. if (ret == AVERROR(EAGAIN))
  1984. continue;
  1985. if (ret < 0)
  1986. goto fail;
  1987. if (ret < 12) {
  1988. av_log(s, AV_LOG_WARNING, "Received too short packet\n");
  1989. continue;
  1990. }
  1991. if ((recvbuf[0] & 0xc0) != 0x80) {
  1992. av_log(s, AV_LOG_WARNING, "Unsupported RTP version packet "
  1993. "received\n");
  1994. continue;
  1995. }
  1996. if (RTP_PT_IS_RTCP(recvbuf[1]))
  1997. continue;
  1998. payload_type = recvbuf[1] & 0x7f;
  1999. break;
  2000. }
  2001. getsockname(ffurl_get_file_handle(in), (struct sockaddr*) &addr, &addrlen);
  2002. ffurl_close(in);
  2003. in = NULL;
  2004. if (ff_rtp_get_codec_info(&codec, payload_type)) {
  2005. av_log(s, AV_LOG_ERROR, "Unable to receive RTP payload type %d "
  2006. "without an SDP file describing it\n",
  2007. payload_type);
  2008. goto fail;
  2009. }
  2010. if (codec.codec_type != AVMEDIA_TYPE_DATA) {
  2011. av_log(s, AV_LOG_WARNING, "Guessing on RTP content - if not received "
  2012. "properly you need an SDP file "
  2013. "describing it\n");
  2014. }
  2015. av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port,
  2016. NULL, 0, s->filename);
  2017. snprintf(sdp, sizeof(sdp),
  2018. "v=0\r\nc=IN IP%d %s\r\nm=%s %d RTP/AVP %d\r\n",
  2019. addr.ss_family == AF_INET ? 4 : 6, host,
  2020. codec.codec_type == AVMEDIA_TYPE_DATA ? "application" :
  2021. codec.codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio",
  2022. port, payload_type);
  2023. av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sdp);
  2024. ffio_init_context(&pb, sdp, strlen(sdp), 0, NULL, NULL, NULL, NULL);
  2025. s->pb = &pb;
  2026. /* sdp_read_header initializes this again */
  2027. ff_network_close();
  2028. rt->media_type_mask = (1 << (AVMEDIA_TYPE_DATA+1)) - 1;
  2029. ret = sdp_read_header(s);
  2030. s->pb = NULL;
  2031. return ret;
  2032. fail:
  2033. if (in)
  2034. ffurl_close(in);
  2035. ff_network_close();
  2036. return ret;
  2037. }
  2038. static const AVClass rtp_demuxer_class = {
  2039. .class_name = "RTP demuxer",
  2040. .item_name = av_default_item_name,
  2041. .option = rtp_options,
  2042. .version = LIBAVUTIL_VERSION_INT,
  2043. };
  2044. AVInputFormat ff_rtp_demuxer = {
  2045. .name = "rtp",
  2046. .long_name = NULL_IF_CONFIG_SMALL("RTP input"),
  2047. .priv_data_size = sizeof(RTSPState),
  2048. .read_probe = rtp_probe,
  2049. .read_header = rtp_read_header,
  2050. .read_packet = ff_rtsp_fetch_packet,
  2051. .read_close = sdp_read_close,
  2052. .flags = AVFMT_NOFILE,
  2053. .priv_class = &rtp_demuxer_class,
  2054. };
  2055. #endif /* CONFIG_RTP_DEMUXER */