rdt.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. /*
  2. * Realmedia RTSP protocol (RDT) support.
  3. * Copyright (c) 2007 Ronald S. Bultje
  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. /**
  22. * @file libavformat/rdt.c
  23. * @brief Realmedia RTSP protocol (RDT) support
  24. * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
  25. */
  26. #include "avformat.h"
  27. #include "libavutil/avstring.h"
  28. #include "rtpdec.h"
  29. #include "rdt.h"
  30. #include "libavutil/base64.h"
  31. #include "libavutil/md5.h"
  32. #include "rm.h"
  33. #include "internal.h"
  34. #include "libavcodec/bitstream.h"
  35. struct RDTDemuxContext {
  36. AVFormatContext *ic; /**< the containing (RTSP) demux context */
  37. /** Each RDT stream-set (represented by one RTSPStream) can contain
  38. * multiple streams (of the same content, but with possibly different
  39. * codecs/bitrates). Each such stream is represented by one AVStream
  40. * in the AVFormatContext, and this variable points to the offset in
  41. * that array such that the first is the first stream of this set. */
  42. AVStream **streams;
  43. int n_streams; /**< streams with identifical content in this set */
  44. void *dynamic_protocol_context;
  45. DynamicPayloadPacketHandlerProc parse_packet;
  46. uint32_t prev_timestamp;
  47. int prev_set_id, prev_stream_id;
  48. };
  49. RDTDemuxContext *
  50. ff_rdt_parse_open(AVFormatContext *ic, int first_stream_of_set_idx,
  51. void *priv_data, RTPDynamicProtocolHandler *handler)
  52. {
  53. RDTDemuxContext *s = av_mallocz(sizeof(RDTDemuxContext));
  54. if (!s)
  55. return NULL;
  56. s->ic = ic;
  57. s->streams = &ic->streams[first_stream_of_set_idx];
  58. do {
  59. s->n_streams++;
  60. } while (first_stream_of_set_idx + s->n_streams < ic->nb_streams &&
  61. s->streams[s->n_streams]->priv_data == s->streams[0]->priv_data);
  62. s->prev_set_id = -1;
  63. s->prev_stream_id = -1;
  64. s->prev_timestamp = -1;
  65. s->parse_packet = handler->parse_packet;
  66. s->dynamic_protocol_context = priv_data;
  67. return s;
  68. }
  69. void
  70. ff_rdt_parse_close(RDTDemuxContext *s)
  71. {
  72. int i;
  73. for (i = 1; i < s->n_streams; i++)
  74. s->streams[i]->priv_data = NULL;
  75. av_free(s);
  76. }
  77. struct PayloadContext {
  78. AVFormatContext *rmctx;
  79. RMStream *rmst[MAX_STREAMS];
  80. uint8_t *mlti_data;
  81. unsigned int mlti_data_size;
  82. char buffer[RTP_MAX_PACKET_LENGTH + FF_INPUT_BUFFER_PADDING_SIZE];
  83. int audio_pkt_cnt; /**< remaining audio packets in rmdec */
  84. };
  85. void
  86. ff_rdt_calc_response_and_checksum(char response[41], char chksum[9],
  87. const char *challenge)
  88. {
  89. int ch_len = strlen (challenge), i;
  90. unsigned char zres[16],
  91. buf[64] = { 0xa1, 0xe9, 0x14, 0x9d, 0x0e, 0x6b, 0x3b, 0x59 };
  92. #define XOR_TABLE_SIZE 37
  93. const unsigned char xor_table[XOR_TABLE_SIZE] = {
  94. 0x05, 0x18, 0x74, 0xd0, 0x0d, 0x09, 0x02, 0x53,
  95. 0xc0, 0x01, 0x05, 0x05, 0x67, 0x03, 0x19, 0x70,
  96. 0x08, 0x27, 0x66, 0x10, 0x10, 0x72, 0x08, 0x09,
  97. 0x63, 0x11, 0x03, 0x71, 0x08, 0x08, 0x70, 0x02,
  98. 0x10, 0x57, 0x05, 0x18, 0x54 };
  99. /* some (length) checks */
  100. if (ch_len == 40) /* what a hack... */
  101. ch_len = 32;
  102. else if (ch_len > 56)
  103. ch_len = 56;
  104. memcpy(buf + 8, challenge, ch_len);
  105. /* xor challenge bytewise with xor_table */
  106. for (i = 0; i < XOR_TABLE_SIZE; i++)
  107. buf[8 + i] ^= xor_table[i];
  108. av_md5_sum(zres, buf, 64);
  109. ff_data_to_hex(response, zres, 16);
  110. for (i=0;i<32;i++) response[i] = tolower(response[i]);
  111. /* add tail */
  112. strcpy (response + 32, "01d0a8e3");
  113. /* calculate checksum */
  114. for (i = 0; i < 8; i++)
  115. chksum[i] = response[i * 4];
  116. chksum[8] = 0;
  117. }
  118. static int
  119. rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr)
  120. {
  121. ByteIOContext pb;
  122. int size;
  123. uint32_t tag;
  124. /**
  125. * Layout of the MLTI chunk:
  126. * 4:MLTI
  127. * 2:<number of streams>
  128. * Then for each stream ([number_of_streams] times):
  129. * 2:<mdpr index>
  130. * 2:<number of mdpr chunks>
  131. * Then for each mdpr chunk ([number_of_mdpr_chunks] times):
  132. * 4:<size>
  133. * [size]:<data>
  134. * we skip MDPR chunks until we reach the one of the stream
  135. * we're interested in, and forward that ([size]+[data]) to
  136. * the RM demuxer to parse the stream-specific header data.
  137. */
  138. if (!rdt->mlti_data)
  139. return -1;
  140. init_put_byte(&pb, rdt->mlti_data, rdt->mlti_data_size, 0,
  141. NULL, NULL, NULL, NULL);
  142. tag = get_le32(&pb);
  143. if (tag == MKTAG('M', 'L', 'T', 'I')) {
  144. int num, chunk_nr;
  145. /* read index of MDPR chunk numbers */
  146. num = get_be16(&pb);
  147. if (rule_nr < 0 || rule_nr >= num)
  148. return -1;
  149. url_fskip(&pb, rule_nr * 2);
  150. chunk_nr = get_be16(&pb);
  151. url_fskip(&pb, (num - 1 - rule_nr) * 2);
  152. /* read MDPR chunks */
  153. num = get_be16(&pb);
  154. if (chunk_nr >= num)
  155. return -1;
  156. while (chunk_nr--)
  157. url_fskip(&pb, get_be32(&pb));
  158. size = get_be32(&pb);
  159. } else {
  160. size = rdt->mlti_data_size;
  161. url_fseek(&pb, 0, SEEK_SET);
  162. }
  163. if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, rdt->rmst[st->index], size) < 0)
  164. return -1;
  165. return 0;
  166. }
  167. /**
  168. * Actual data handling.
  169. */
  170. int
  171. ff_rdt_parse_header(const uint8_t *buf, int len,
  172. int *pset_id, int *pseq_no, int *pstream_id,
  173. int *pis_keyframe, uint32_t *ptimestamp)
  174. {
  175. GetBitContext gb;
  176. int consumed = 0, set_id, seq_no, stream_id, is_keyframe,
  177. len_included, need_reliable;
  178. uint32_t timestamp;
  179. /* skip status packets */
  180. while (len >= 5 && buf[1] == 0xFF /* status packet */) {
  181. int pkt_len;
  182. if (!(buf[0] & 0x80))
  183. return -1; /* not followed by a data packet */
  184. pkt_len = AV_RB16(buf+3);
  185. buf += pkt_len;
  186. len -= pkt_len;
  187. consumed += pkt_len;
  188. }
  189. if (len < 16)
  190. return -1;
  191. /**
  192. * Layout of the header (in bits):
  193. * 1: len_included
  194. * Flag indicating whether this header includes a length field;
  195. * this can be used to concatenate multiple RDT packets in a
  196. * single UDP/TCP data frame and is used to precede RDT data
  197. * by stream status packets
  198. * 1: need_reliable
  199. * Flag indicating whether this header includes a "reliable
  200. * sequence number"; these are apparently sequence numbers of
  201. * data packets alone. For data packets, this flag is always
  202. * set, according to the Real documentation [1]
  203. * 5: set_id
  204. * ID of a set of streams of identical content, possibly with
  205. * different codecs or bitrates
  206. * 1: is_reliable
  207. * Flag set for certain streams deemed less tolerable for packet
  208. * loss
  209. * 16: seq_no
  210. * Packet sequence number; if >=0xFF00, this is a non-data packet
  211. * containing stream status info, the second byte indicates the
  212. * type of status packet (see wireshark docs / source code [2])
  213. * if (len_included) {
  214. * 16: packet_len
  215. * } else {
  216. * packet_len = remainder of UDP/TCP frame
  217. * }
  218. * 1: is_back_to_back
  219. * Back-to-Back flag; used for timing, set for one in every 10
  220. * packets, according to the Real documentation [1]
  221. * 1: is_slow_data
  222. * Slow-data flag; currently unused, according to Real docs [1]
  223. * 5: stream_id
  224. * ID of the stream within this particular set of streams
  225. * 1: is_no_keyframe
  226. * Non-keyframe flag (unset if packet belongs to a keyframe)
  227. * 32: timestamp (PTS)
  228. * if (set_id == 0x1F) {
  229. * 16: set_id (extended set-of-streams ID; see set_id)
  230. * }
  231. * if (need_reliable) {
  232. * 16: reliable_seq_no
  233. * Reliable sequence number (see need_reliable)
  234. * }
  235. * if (stream_id == 0x3F) {
  236. * 16: stream_id (extended stream ID; see stream_id)
  237. * }
  238. * [1] https://protocol.helixcommunity.org/files/2005/devdocs/RDT_Feature_Level_20.txt
  239. * [2] http://www.wireshark.org/docs/dfref/r/rdt.html and
  240. * http://anonsvn.wireshark.org/viewvc/trunk/epan/dissectors/packet-rdt.c
  241. */
  242. init_get_bits(&gb, buf, len << 3);
  243. len_included = get_bits1(&gb);
  244. need_reliable = get_bits1(&gb);
  245. set_id = get_bits(&gb, 5);
  246. skip_bits(&gb, 1);
  247. seq_no = get_bits(&gb, 16);
  248. if (len_included)
  249. skip_bits(&gb, 16);
  250. skip_bits(&gb, 2);
  251. stream_id = get_bits(&gb, 5);
  252. is_keyframe = !get_bits1(&gb);
  253. timestamp = get_bits_long(&gb, 32);
  254. if (set_id == 0x1f)
  255. set_id = get_bits(&gb, 16);
  256. if (need_reliable)
  257. skip_bits(&gb, 16);
  258. if (stream_id == 0x1f)
  259. stream_id = get_bits(&gb, 16);
  260. if (pset_id) *pset_id = set_id;
  261. if (pseq_no) *pseq_no = seq_no;
  262. if (pstream_id) *pstream_id = stream_id;
  263. if (pis_keyframe) *pis_keyframe = is_keyframe;
  264. if (ptimestamp) *ptimestamp = timestamp;
  265. return consumed + (get_bits_count(&gb) >> 3);
  266. }
  267. /**< return 0 on packet, no more left, 1 on packet, 1 on partial packet... */
  268. static int
  269. rdt_parse_packet (AVFormatContext *ctx, PayloadContext *rdt, AVStream *st,
  270. AVPacket *pkt, uint32_t *timestamp,
  271. const uint8_t *buf, int len, int flags)
  272. {
  273. int seq = 1, res;
  274. ByteIOContext pb;
  275. if (rdt->audio_pkt_cnt == 0) {
  276. int pos;
  277. init_put_byte(&pb, buf, len, 0, NULL, NULL, NULL, NULL);
  278. flags = (flags & RTP_FLAG_KEY) ? 2 : 0;
  279. res = ff_rm_parse_packet (rdt->rmctx, &pb, st, rdt->rmst[st->index], len, pkt,
  280. &seq, &flags, timestamp);
  281. pos = url_ftell(&pb);
  282. if (res < 0)
  283. return res;
  284. rdt->audio_pkt_cnt = res;
  285. if (rdt->audio_pkt_cnt > 0 &&
  286. st->codec->codec_id == CODEC_ID_AAC) {
  287. memcpy (rdt->buffer, buf + pos, len - pos);
  288. rdt->rmctx->pb = av_alloc_put_byte (rdt->buffer, len - pos, 0,
  289. NULL, NULL, NULL, NULL);
  290. }
  291. } else {
  292. rdt->audio_pkt_cnt =
  293. ff_rm_retrieve_cache (rdt->rmctx, rdt->rmctx->pb,
  294. st, rdt->rmst[st->index], pkt);
  295. if (rdt->audio_pkt_cnt == 0 &&
  296. st->codec->codec_id == CODEC_ID_AAC)
  297. av_freep(&rdt->rmctx->pb);
  298. }
  299. pkt->stream_index = st->index;
  300. pkt->pts = *timestamp;
  301. return rdt->audio_pkt_cnt > 0;
  302. }
  303. int
  304. ff_rdt_parse_packet(RDTDemuxContext *s, AVPacket *pkt,
  305. const uint8_t *buf, int len)
  306. {
  307. int seq_no, flags = 0, stream_id, set_id, is_keyframe;
  308. uint32_t timestamp;
  309. int rv= 0;
  310. if (!s->parse_packet)
  311. return -1;
  312. if (!buf && s->prev_stream_id != -1) {
  313. /* return the next packets, if any */
  314. timestamp= 0; ///< Should not be used if buf is NULL, but should be set to the timestamp of the packet returned....
  315. rv= s->parse_packet(s->ic, s->dynamic_protocol_context,
  316. s->streams[s->prev_stream_id],
  317. pkt, &timestamp, NULL, 0, flags);
  318. return rv;
  319. }
  320. if (len < 12)
  321. return -1;
  322. rv = ff_rdt_parse_header(buf, len, &set_id, &seq_no, &stream_id, &is_keyframe, &timestamp);
  323. if (rv < 0)
  324. return rv;
  325. if (is_keyframe &&
  326. (set_id != s->prev_set_id || timestamp != s->prev_timestamp ||
  327. stream_id != s->prev_stream_id)) {
  328. flags |= RTP_FLAG_KEY;
  329. s->prev_set_id = set_id;
  330. s->prev_timestamp = timestamp;
  331. }
  332. s->prev_stream_id = stream_id;
  333. buf += rv;
  334. len -= rv;
  335. if (s->prev_stream_id >= s->n_streams) {
  336. s->prev_stream_id = -1;
  337. return -1;
  338. }
  339. rv = s->parse_packet(s->ic, s->dynamic_protocol_context,
  340. s->streams[s->prev_stream_id],
  341. pkt, &timestamp, buf, len, flags);
  342. return rv;
  343. }
  344. void
  345. ff_rdt_subscribe_rule (char *cmd, int size,
  346. int stream_nr, int rule_nr)
  347. {
  348. av_strlcatf(cmd, size, "stream=%d;rule=%d,stream=%d;rule=%d",
  349. stream_nr, rule_nr * 2, stream_nr, rule_nr * 2 + 1);
  350. }
  351. static unsigned char *
  352. rdt_parse_b64buf (unsigned int *target_len, const char *p)
  353. {
  354. unsigned char *target;
  355. int len = strlen(p);
  356. if (*p == '\"') {
  357. p++;
  358. len -= 2; /* skip embracing " at start/end */
  359. }
  360. *target_len = len * 3 / 4;
  361. target = av_mallocz(*target_len + FF_INPUT_BUFFER_PADDING_SIZE);
  362. av_base64_decode(target, p, *target_len);
  363. return target;
  364. }
  365. static int
  366. rdt_parse_sdp_line (AVFormatContext *s, int st_index,
  367. PayloadContext *rdt, const char *line)
  368. {
  369. AVStream *stream = s->streams[st_index];
  370. const char *p = line;
  371. if (av_strstart(p, "OpaqueData:buffer;", &p)) {
  372. rdt->mlti_data = rdt_parse_b64buf(&rdt->mlti_data_size, p);
  373. } else if (av_strstart(p, "StartTime:integer;", &p))
  374. stream->first_dts = atoi(p);
  375. else if (av_strstart(p, "ASMRuleBook:string;", &p)) {
  376. int n = st_index, first = -1;
  377. for (n = 0; n < s->nb_streams; n++)
  378. if (s->streams[n]->priv_data == stream->priv_data) {
  379. if (first == -1) first = n;
  380. rdt->rmst[s->streams[n]->index] = ff_rm_alloc_rmstream();
  381. rdt_load_mdpr(rdt, s->streams[n], (n - first) * 2);
  382. if (s->streams[n]->codec->codec_id == CODEC_ID_AAC)
  383. s->streams[n]->codec->frame_size = 1; // FIXME
  384. }
  385. }
  386. return 0;
  387. }
  388. static void
  389. real_parse_asm_rule(AVStream *st, const char *p, const char *end)
  390. {
  391. do {
  392. /* can be either averagebandwidth= or AverageBandwidth= */
  393. if (sscanf(p, " %*1[Aa]verage%*1[Bb]andwidth=%d", &st->codec->bit_rate) == 1)
  394. break;
  395. if (!(p = strchr(p, ',')) || p > end)
  396. p = end;
  397. p++;
  398. } while (p < end);
  399. }
  400. static AVStream *
  401. add_dstream(AVFormatContext *s, AVStream *orig_st)
  402. {
  403. AVStream *st;
  404. if (!(st = av_new_stream(s, 0)))
  405. return NULL;
  406. st->codec->codec_type = orig_st->codec->codec_type;
  407. st->priv_data = orig_st->priv_data;
  408. st->first_dts = orig_st->first_dts;
  409. return st;
  410. }
  411. static void
  412. real_parse_asm_rulebook(AVFormatContext *s, AVStream *orig_st,
  413. const char *p)
  414. {
  415. const char *end;
  416. int n_rules, odd = 0;
  417. AVStream *st;
  418. /**
  419. * The ASMRuleBook contains a list of comma-separated strings per rule,
  420. * and each rule is separated by a ;. The last one also has a ; at the
  421. * end so we can use it as delimiter.
  422. * Every rule occurs twice, once for when the RTSP packet header marker
  423. * is set and once for if it isn't. We only read the first because we
  424. * don't care much (that's what the "odd" variable is for).
  425. * Each rule contains a set of one or more statements, optionally
  426. * preceeded by a single condition. If there's a condition, the rule
  427. * starts with a '#'. Multiple conditions are merged between brackets,
  428. * so there are never multiple conditions spread out over separate
  429. * statements. Generally, these conditions are bitrate limits (min/max)
  430. * for multi-bitrate streams.
  431. */
  432. if (*p == '\"') p++;
  433. for (n_rules = 0; s->nb_streams < MAX_STREAMS;) {
  434. if (!(end = strchr(p, ';')))
  435. break;
  436. if (!odd && end != p) {
  437. if (n_rules > 0)
  438. st = add_dstream(s, orig_st);
  439. else
  440. st = orig_st;
  441. real_parse_asm_rule(st, p, end);
  442. n_rules++;
  443. }
  444. p = end + 1;
  445. odd ^= 1;
  446. }
  447. }
  448. void
  449. ff_real_parse_sdp_a_line (AVFormatContext *s, int stream_index,
  450. const char *line)
  451. {
  452. const char *p = line;
  453. if (av_strstart(p, "ASMRuleBook:string;", &p))
  454. real_parse_asm_rulebook(s, s->streams[stream_index], p);
  455. }
  456. static PayloadContext *
  457. rdt_new_extradata (void)
  458. {
  459. PayloadContext *rdt = av_mallocz(sizeof(PayloadContext));
  460. av_open_input_stream(&rdt->rmctx, NULL, "", &rdt_demuxer, NULL);
  461. return rdt;
  462. }
  463. static void
  464. rdt_free_extradata (PayloadContext *rdt)
  465. {
  466. int i;
  467. for (i = 0; i < MAX_STREAMS; i++)
  468. if (rdt->rmst[i]) {
  469. ff_rm_free_rmstream(rdt->rmst[i]);
  470. av_freep(&rdt->rmst[i]);
  471. }
  472. if (rdt->rmctx)
  473. av_close_input_stream(rdt->rmctx);
  474. av_freep(&rdt->mlti_data);
  475. av_free(rdt);
  476. }
  477. #define RDT_HANDLER(n, s, t) \
  478. static RTPDynamicProtocolHandler ff_rdt_ ## n ## _handler = { \
  479. s, \
  480. t, \
  481. CODEC_ID_NONE, \
  482. rdt_parse_sdp_line, \
  483. rdt_new_extradata, \
  484. rdt_free_extradata, \
  485. rdt_parse_packet \
  486. };
  487. RDT_HANDLER(live_video, "x-pn-multirate-realvideo-live", CODEC_TYPE_VIDEO);
  488. RDT_HANDLER(live_audio, "x-pn-multirate-realaudio-live", CODEC_TYPE_AUDIO);
  489. RDT_HANDLER(video, "x-pn-realvideo", CODEC_TYPE_VIDEO);
  490. RDT_HANDLER(audio, "x-pn-realaudio", CODEC_TYPE_AUDIO);
  491. void av_register_rdt_dynamic_payload_handlers(void)
  492. {
  493. ff_register_dynamic_payload_handler(&ff_rdt_video_handler);
  494. ff_register_dynamic_payload_handler(&ff_rdt_audio_handler);
  495. ff_register_dynamic_payload_handler(&ff_rdt_live_video_handler);
  496. ff_register_dynamic_payload_handler(&ff_rdt_live_audio_handler);
  497. }