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.

465 lines
15KB

  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 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 "rtp_internal.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. av_free(s);
  73. }
  74. struct PayloadContext {
  75. AVFormatContext *rmctx;
  76. uint8_t *mlti_data;
  77. unsigned int mlti_data_size;
  78. char buffer[RTP_MAX_PACKET_LENGTH + FF_INPUT_BUFFER_PADDING_SIZE];
  79. int audio_pkt_cnt[MAX_STREAMS]; /**< remaining audio packets in rmdec */
  80. };
  81. void
  82. ff_rdt_calc_response_and_checksum(char response[41], char chksum[9],
  83. const char *challenge)
  84. {
  85. int ch_len = strlen (challenge), i;
  86. unsigned char zres[16],
  87. buf[64] = { 0xa1, 0xe9, 0x14, 0x9d, 0x0e, 0x6b, 0x3b, 0x59 };
  88. #define XOR_TABLE_SIZE 37
  89. const unsigned char xor_table[XOR_TABLE_SIZE] = {
  90. 0x05, 0x18, 0x74, 0xd0, 0x0d, 0x09, 0x02, 0x53,
  91. 0xc0, 0x01, 0x05, 0x05, 0x67, 0x03, 0x19, 0x70,
  92. 0x08, 0x27, 0x66, 0x10, 0x10, 0x72, 0x08, 0x09,
  93. 0x63, 0x11, 0x03, 0x71, 0x08, 0x08, 0x70, 0x02,
  94. 0x10, 0x57, 0x05, 0x18, 0x54 };
  95. /* some (length) checks */
  96. if (ch_len == 40) /* what a hack... */
  97. ch_len = 32;
  98. else if (ch_len > 56)
  99. ch_len = 56;
  100. memcpy(buf + 8, challenge, ch_len);
  101. /* xor challenge bytewise with xor_table */
  102. for (i = 0; i < XOR_TABLE_SIZE; i++)
  103. buf[8 + i] ^= xor_table[i];
  104. av_md5_sum(zres, buf, 64);
  105. ff_data_to_hex(response, zres, 16);
  106. for (i=0;i<32;i++) response[i] = tolower(response[i]);
  107. /* add tail */
  108. strcpy (response + 32, "01d0a8e3");
  109. /* calculate checksum */
  110. for (i = 0; i < 8; i++)
  111. chksum[i] = response[i * 4];
  112. chksum[8] = 0;
  113. }
  114. static int
  115. rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr)
  116. {
  117. ByteIOContext pb;
  118. int size;
  119. uint32_t tag;
  120. /**
  121. * Layout of the MLTI chunk:
  122. * 4:MLTI
  123. * 2:<number of streams>
  124. * Then for each stream ([number_of_streams] times):
  125. * 2:<mdpr index>
  126. * 2:<number of mdpr chunks>
  127. * Then for each mdpr chunk ([number_of_mdpr_chunks] times):
  128. * 4:<size>
  129. * [size]:<data>
  130. * we skip MDPR chunks until we reach the one of the stream
  131. * we're interested in, and forward that ([size]+[data]) to
  132. * the RM demuxer to parse the stream-specific header data.
  133. */
  134. if (!rdt->mlti_data)
  135. return -1;
  136. init_put_byte(&pb, rdt->mlti_data, rdt->mlti_data_size, 0,
  137. NULL, NULL, NULL, NULL);
  138. tag = get_le32(&pb);
  139. if (tag == MKTAG('M', 'L', 'T', 'I')) {
  140. int num, chunk_nr;
  141. /* read index of MDPR chunk numbers */
  142. num = get_be16(&pb);
  143. if (rule_nr < 0 || rule_nr >= num)
  144. return -1;
  145. url_fskip(&pb, rule_nr * 2);
  146. chunk_nr = get_be16(&pb);
  147. url_fskip(&pb, (num - 1 - rule_nr) * 2);
  148. /* read MDPR chunks */
  149. num = get_be16(&pb);
  150. if (chunk_nr >= num)
  151. return -1;
  152. while (chunk_nr--)
  153. url_fskip(&pb, get_be32(&pb));
  154. size = get_be32(&pb);
  155. } else {
  156. size = rdt->mlti_data_size;
  157. url_fseek(&pb, 0, SEEK_SET);
  158. }
  159. if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, size) < 0)
  160. return -1;
  161. return 0;
  162. }
  163. /**
  164. * Actual data handling.
  165. */
  166. int
  167. ff_rdt_parse_header(const uint8_t *buf, int len,
  168. int *pset_id, int *pseq_no, int *pstream_id,
  169. int *pis_keyframe, uint32_t *ptimestamp)
  170. {
  171. GetBitContext gb;
  172. int consumed = 0, set_id, seq_no, stream_id, is_keyframe,
  173. len_included, need_reliable;
  174. uint32_t timestamp;
  175. /* skip status packets */
  176. while (len >= 5 && buf[1] == 0xFF /* status packet */) {
  177. int pkt_len;
  178. if (!(buf[0] & 0x80))
  179. return -1; /* not followed by a data packet */
  180. pkt_len = AV_RB16(buf+3);
  181. buf += pkt_len;
  182. len -= pkt_len;
  183. consumed += pkt_len;
  184. }
  185. if (len < 16)
  186. return -1;
  187. /**
  188. * Layout of the header (in bits):
  189. * 1: len_included
  190. * Flag indicating whether this header includes a length field;
  191. * this can be used to concatenate multiple RDT packets in a
  192. * single UDP/TCP data frame and is used to precede RDT data
  193. * by stream status packets
  194. * 1: need_reliable
  195. * Flag indicating whether this header includes a "reliable
  196. * sequence number"; these are apparently sequence numbers of
  197. * data packets alone. For data packets, this flag is always
  198. * set, according to the Real documentation [1]
  199. * 5: set_id
  200. * ID of a set of streams of identical content, possibly with
  201. * different codecs or bitrates
  202. * 1: is_reliable
  203. * Flag set for certain streams deemed less tolerable for packet
  204. * loss
  205. * 16: seq_no
  206. * Packet sequence number; if >=0xFF00, this is a non-data packet
  207. * containing stream status info, the second byte indicates the
  208. * type of status packet (see wireshark docs / source code [2])
  209. * if (len_included) {
  210. * 16: packet_len
  211. * } else {
  212. * packet_len = remainder of UDP/TCP frame
  213. * }
  214. * 1: is_back_to_back
  215. * Back-to-Back flag; used for timing, set for one in every 10
  216. * packets, according to the Real documentation [1]
  217. * 1: is_slow_data
  218. * Slow-data flag; currently unused, according to Real docs [1]
  219. * 5: stream_id
  220. * ID of the stream within this particular set of streams
  221. * 1: is_no_keyframe
  222. * Non-keyframe flag (unset if packet belongs to a keyframe)
  223. * 32: timestamp (PTS)
  224. * if (set_id == 0x1F) {
  225. * 16: set_id (extended set-of-streams ID; see set_id)
  226. * }
  227. * if (need_reliable) {
  228. * 16: reliable_seq_no
  229. * Reliable sequence number (see need_reliable)
  230. * }
  231. * if (stream_id == 0x3F) {
  232. * 16: stream_id (extended stream ID; see stream_id)
  233. * }
  234. * [1] https://protocol.helixcommunity.org/files/2005/devdocs/RDT_Feature_Level_20.txt
  235. * [2] http://www.wireshark.org/docs/dfref/r/rdt.html and
  236. * http://anonsvn.wireshark.org/viewvc/trunk/epan/dissectors/packet-rdt.c
  237. */
  238. init_get_bits(&gb, buf, len << 3);
  239. len_included = get_bits1(&gb);
  240. need_reliable = get_bits1(&gb);
  241. set_id = get_bits(&gb, 5);
  242. skip_bits(&gb, 1);
  243. seq_no = get_bits(&gb, 16);
  244. if (len_included)
  245. skip_bits(&gb, 16);
  246. skip_bits(&gb, 2);
  247. stream_id = get_bits(&gb, 5);
  248. is_keyframe = !get_bits1(&gb);
  249. timestamp = get_bits_long(&gb, 32);
  250. if (set_id == 0x1f)
  251. set_id = get_bits(&gb, 16);
  252. if (need_reliable)
  253. skip_bits(&gb, 16);
  254. if (stream_id == 0x1f)
  255. stream_id = get_bits(&gb, 16);
  256. if (pset_id) *pset_id = set_id;
  257. if (pseq_no) *pseq_no = seq_no;
  258. if (pstream_id) *pstream_id = stream_id;
  259. if (pis_keyframe) *pis_keyframe = is_keyframe;
  260. if (ptimestamp) *ptimestamp = timestamp;
  261. return consumed + (get_bits_count(&gb) >> 3);
  262. }
  263. /**< return 0 on packet, no more left, 1 on packet, 1 on partial packet... */
  264. static int
  265. rdt_parse_packet (PayloadContext *rdt, AVStream *st,
  266. AVPacket *pkt, uint32_t *timestamp,
  267. const uint8_t *buf, int len, int flags)
  268. {
  269. int seq = 1, res;
  270. ByteIOContext pb;
  271. if (rdt->audio_pkt_cnt == 0) {
  272. int pos;
  273. init_put_byte(&pb, buf, len, 0, NULL, NULL, NULL, NULL);
  274. flags = (flags & PKT_FLAG_KEY) ? 2 : 0;
  275. res = ff_rm_parse_packet (rdt->rmctx, &pb, st, len, pkt,
  276. &seq, &flags, timestamp);
  277. pos = url_ftell(&pb);
  278. if (res < 0)
  279. return res;
  280. rdt->audio_pkt_cnt[st->id] = res;
  281. if (rdt->audio_pkt_cnt[st->id] > 0 &&
  282. st->codec->codec_id == CODEC_ID_AAC) {
  283. memcpy (rdt->buffer, buf + pos, len - pos);
  284. rdt->rmctx->pb = av_alloc_put_byte (rdt->buffer, len - pos, 0,
  285. NULL, NULL, NULL, NULL);
  286. }
  287. } else {
  288. ff_rm_retrieve_cache (rdt->rmctx, rdt->rmctx->pb, st, pkt);
  289. if (rdt->audio_pkt_cnt[st->id] == 0 &&
  290. st->codec->codec_id == CODEC_ID_AAC)
  291. av_freep(&rdt->rmctx->pb);
  292. }
  293. pkt->stream_index = st->index;
  294. pkt->pts = *timestamp;
  295. return rdt->audio_pkt_cnt[st->id] > 0;
  296. }
  297. int
  298. ff_rdt_parse_packet(RDTDemuxContext *s, AVPacket *pkt,
  299. const uint8_t *buf, int len)
  300. {
  301. int seq_no, flags = 0, stream_id, set_id, is_keyframe;
  302. uint32_t timestamp;
  303. int rv= 0;
  304. if (!s->parse_packet)
  305. return -1;
  306. if (!buf && s->prev_stream_id != -1) {
  307. /* return the next packets, if any */
  308. timestamp= 0; ///< Should not be used if buf is NULL, but should be set to the timestamp of the packet returned....
  309. rv= s->parse_packet(s->dynamic_protocol_context,
  310. s->streams[s->prev_stream_id],
  311. pkt, &timestamp, NULL, 0, flags);
  312. return rv;
  313. }
  314. if (len < 12)
  315. return -1;
  316. rv = ff_rdt_parse_header(buf, len, &set_id, &seq_no, &stream_id, &is_keyframe, &timestamp);
  317. if (rv < 0)
  318. return rv;
  319. if (is_keyframe &&
  320. (set_id != s->prev_set_id || timestamp != s->prev_timestamp ||
  321. stream_id != s->prev_stream_id)) {
  322. flags |= PKT_FLAG_KEY;
  323. s->prev_set_id = set_id;
  324. s->prev_timestamp = timestamp;
  325. }
  326. s->prev_stream_id = stream_id;
  327. buf += rv;
  328. len -= rv;
  329. if (s->prev_stream_id >= s->n_streams) {
  330. s->prev_stream_id = -1;
  331. return -1;
  332. }
  333. rv = s->parse_packet(s->dynamic_protocol_context,
  334. s->streams[s->prev_stream_id],
  335. pkt, &timestamp, buf, len, flags);
  336. return rv;
  337. }
  338. void
  339. ff_rdt_subscribe_rule (char *cmd, int size,
  340. int stream_nr, int rule_nr)
  341. {
  342. av_strlcatf(cmd, size, "stream=%d;rule=%d,stream=%d;rule=%d",
  343. stream_nr, rule_nr * 2, stream_nr, rule_nr * 2 + 1);
  344. }
  345. void
  346. ff_rdt_subscribe_rule2 (RDTDemuxContext *s, char *cmd, int size,
  347. int stream_nr, int rule_nr)
  348. {
  349. PayloadContext *rdt = s->dynamic_protocol_context;
  350. rdt_load_mdpr(rdt, s->streams[0], rule_nr * 2);
  351. }
  352. static unsigned char *
  353. rdt_parse_b64buf (unsigned int *target_len, const char *p)
  354. {
  355. unsigned char *target;
  356. int len = strlen(p);
  357. if (*p == '\"') {
  358. p++;
  359. len -= 2; /* skip embracing " at start/end */
  360. }
  361. *target_len = len * 3 / 4;
  362. target = av_mallocz(*target_len + FF_INPUT_BUFFER_PADDING_SIZE);
  363. av_base64_decode(target, p, *target_len);
  364. return target;
  365. }
  366. static int
  367. rdt_parse_sdp_line (AVFormatContext *s, int st_index,
  368. PayloadContext *rdt, const char *line)
  369. {
  370. AVStream *stream = s->streams[st_index];
  371. const char *p = line;
  372. if (av_strstart(p, "OpaqueData:buffer;", &p)) {
  373. rdt->mlti_data = rdt_parse_b64buf(&rdt->mlti_data_size, p);
  374. } else if (av_strstart(p, "StartTime:integer;", &p))
  375. stream->first_dts = atoi(p);
  376. return 0;
  377. }
  378. static PayloadContext *
  379. rdt_new_extradata (void)
  380. {
  381. PayloadContext *rdt = av_mallocz(sizeof(PayloadContext));
  382. av_open_input_stream(&rdt->rmctx, NULL, "", &rdt_demuxer, NULL);
  383. return rdt;
  384. }
  385. static void
  386. rdt_free_extradata (PayloadContext *rdt)
  387. {
  388. if (rdt->rmctx)
  389. av_close_input_stream(rdt->rmctx);
  390. av_freep(&rdt->mlti_data);
  391. av_free(rdt);
  392. }
  393. #define RDT_HANDLER(n, s, t) \
  394. static RTPDynamicProtocolHandler ff_rdt_ ## n ## _handler = { \
  395. s, \
  396. t, \
  397. CODEC_ID_NONE, \
  398. rdt_parse_sdp_line, \
  399. rdt_new_extradata, \
  400. rdt_free_extradata, \
  401. rdt_parse_packet \
  402. };
  403. RDT_HANDLER(live_video, "x-pn-multirate-realvideo-live", CODEC_TYPE_VIDEO);
  404. RDT_HANDLER(live_audio, "x-pn-multirate-realaudio-live", CODEC_TYPE_AUDIO);
  405. RDT_HANDLER(video, "x-pn-realvideo", CODEC_TYPE_VIDEO);
  406. RDT_HANDLER(audio, "x-pn-realaudio", CODEC_TYPE_AUDIO);
  407. void av_register_rdt_dynamic_payload_handlers(void)
  408. {
  409. ff_register_dynamic_payload_handler(&ff_rdt_video_handler);
  410. ff_register_dynamic_payload_handler(&ff_rdt_audio_handler);
  411. ff_register_dynamic_payload_handler(&ff_rdt_live_video_handler);
  412. ff_register_dynamic_payload_handler(&ff_rdt_live_audio_handler);
  413. }