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.

745 lines
27KB

  1. /*
  2. * MMS protocol over TCP
  3. * Copyright (c) 2006,2007 Ryan Martell
  4. * Copyright (c) 2007 Björn Axelsson
  5. * Copyright (c) 2010 Zhentan Feng <spyfeng at gmail dot com>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* References
  24. * MMS protocol specification:
  25. * [1]http://msdn.microsoft.com/en-us/library/cc234711(PROT.10).aspx
  26. * ASF specification. Revision 01.20.03.
  27. * [2]http://msdn.microsoft.com/en-us/library/bb643323.aspx
  28. */
  29. #include "avformat.h"
  30. #include "internal.h"
  31. #include "libavutil/intreadwrite.h"
  32. #include "libavcodec/bytestream.h"
  33. #include "network.h"
  34. #include "asf.h"
  35. #define LOCAL_ADDRESS 0xc0a80081 // FIXME get and use correct local ip address.
  36. #define LOCAL_PORT 1037 // as above.
  37. /** Client to server packet types. */
  38. typedef enum {
  39. CS_PKT_INITIAL = 0x01,
  40. CS_PKT_PROTOCOL_SELECT = 0x02,
  41. CS_PKT_MEDIA_FILE_REQUEST = 0x05,
  42. CS_PKT_START_FROM_PKT_ID = 0x07,
  43. CS_PKT_STREAM_PAUSE = 0x09,
  44. CS_PKT_STREAM_CLOSE = 0x0d,
  45. CS_PKT_MEDIA_HEADER_REQUEST = 0x15,
  46. CS_PKT_TIMING_DATA_REQUEST = 0x18,
  47. CS_PKT_USER_PASSWORD = 0x1a,
  48. CS_PKT_KEEPALIVE = 0x1b,
  49. CS_PKT_STREAM_ID_REQUEST = 0x33,
  50. } MMSCSPacketType;
  51. /** Server to client packet types. */
  52. typedef enum {
  53. /** Control packets. */
  54. /*@{*/
  55. SC_PKT_CLIENT_ACCEPTED = 0x01,
  56. SC_PKT_PROTOCOL_ACCEPTED = 0x02,
  57. SC_PKT_PROTOCOL_FAILED = 0x03,
  58. SC_PKT_MEDIA_PKT_FOLLOWS = 0x05,
  59. SC_PKT_MEDIA_FILE_DETAILS = 0x06,
  60. SC_PKT_HEADER_REQUEST_ACCEPTED = 0x11,
  61. SC_PKT_TIMING_TEST_REPLY = 0x15,
  62. SC_PKT_PASSWORD_REQUIRED = 0x1a,
  63. SC_PKT_KEEPALIVE = 0x1b,
  64. SC_PKT_STREAM_STOPPED = 0x1e,
  65. SC_PKT_STREAM_CHANGING = 0x20,
  66. SC_PKT_STREAM_ID_ACCEPTED = 0x21,
  67. /*@}*/
  68. /** Pseudo packets. */
  69. /*@{*/
  70. SC_PKT_CANCEL = -1,
  71. SC_PKT_NO_DATA = -2,
  72. /*@}*/
  73. /** Data packets. */
  74. /*@{*/
  75. SC_PKT_ASF_HEADER = 0x010000,// make it bigger than 0xFF in case of
  76. SC_PKT_ASF_MEDIA = 0x010001,// receiving false data packets.
  77. /*@}*/
  78. } MMSSCPacketType;
  79. typedef struct {
  80. int id;
  81. }MMSStream;
  82. typedef struct {
  83. int outgoing_packet_seq; ///< Outgoing packet sequence number.
  84. char path[256]; ///< Path of the resource being asked for.
  85. char host[128]; ///< Host of the resources.
  86. URLContext *mms_hd; ///< TCP connection handle
  87. MMSStream streams[MAX_STREAMS];
  88. /** Buffer for outgoing packets. */
  89. /*@{*/
  90. uint8_t *write_out_ptr; ///< Pointer for writting the buffer.
  91. uint8_t out_buffer[512]; ///< Buffer for outgoing packet.
  92. /*@}*/
  93. /** Buffer for incoming packets. */
  94. /*@{*/
  95. uint8_t in_buffer[8192]; ///< Buffer for incoming packets.
  96. uint8_t *read_in_ptr; ///< Pointer for reading from incoming buffer.
  97. int remaining_in_len; ///< Reading length from incoming buffer.
  98. /*@}*/
  99. int incoming_packet_seq; ///< Incoming packet sequence number.
  100. int incoming_flags; ///< Incoming packet flags.
  101. int packet_id; ///< Identifier for packets in the current stream.
  102. unsigned int header_packet_id; ///< default is 2.
  103. /** Internal handling of the ASF header */
  104. /*@{*/
  105. uint8_t *asf_header; ///< Stored ASF header.
  106. int asf_header_size; ///< Size of stored ASF header.
  107. int header_parsed; ///< The header has been received and parsed.
  108. int asf_packet_len;
  109. int asf_header_read_size;
  110. /*@}*/
  111. int stream_num; ///< stream numbers.
  112. int is_playing;
  113. } MMSContext;
  114. /** Create MMST command packet header */
  115. static void start_command_packet(MMSContext *mms, MMSCSPacketType packet_type)
  116. {
  117. mms->write_out_ptr = mms->out_buffer;
  118. bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
  119. bytestream_put_le32(&mms->write_out_ptr, 0xb00bface);
  120. bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
  121. bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' '));
  122. bytestream_put_le32(&mms->write_out_ptr, 0);
  123. bytestream_put_le32(&mms->write_out_ptr, mms->outgoing_packet_seq++);
  124. bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
  125. bytestream_put_le32(&mms->write_out_ptr, 0);
  126. bytestream_put_le16(&mms->write_out_ptr, packet_type);
  127. bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
  128. }
  129. /** Add prefixes to MMST command packet. */
  130. static void insert_command_prefixes(MMSContext *mms,
  131. uint32_t prefix1, uint32_t prefix2)
  132. {
  133. bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
  134. bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
  135. }
  136. /** Send a prepared MMST command packet. */
  137. static int send_command_packet(MMSContext *mms)
  138. {
  139. int len= mms->write_out_ptr - mms->out_buffer;
  140. int exact_length = (len + 7) & ~7;
  141. int first_length= exact_length - 16;
  142. int len8= first_length/8;
  143. int write_result;
  144. // update packet length fields.
  145. AV_WL32(mms->out_buffer + 8, first_length);
  146. AV_WL32(mms->out_buffer + 16, len8);
  147. AV_WL32(mms->out_buffer + 32, len8-2);
  148. memset(mms->write_out_ptr, 0, exact_length - len);
  149. // write it out.
  150. write_result= url_write(mms->mms_hd, mms->out_buffer, exact_length);
  151. if(write_result != exact_length) {
  152. av_log(NULL, AV_LOG_ERROR,
  153. "Failed to write data of length %d: %d (%s)\n",
  154. exact_length, write_result,
  155. write_result < 0 ? strerror(write_result) :
  156. "The server closed the connection");
  157. return AVERROR_IO;
  158. }
  159. return 0;
  160. }
  161. static void mms_put_utf16(MMSContext *mms, uint8_t *src)
  162. {
  163. ByteIOContext bic;
  164. int size = mms->write_out_ptr - mms->out_buffer;
  165. int len;
  166. init_put_byte(&bic, mms->write_out_ptr,
  167. sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
  168. len = ff_put_str16_nolen(&bic, src);
  169. mms->write_out_ptr += len;
  170. }
  171. static int send_time_test_data(MMSContext *mms)
  172. {
  173. start_command_packet(mms, CS_PKT_TIMING_DATA_REQUEST);
  174. insert_command_prefixes(mms, 0xf0f0f0f1, 0x0004000b);
  175. return send_command_packet(mms);
  176. }
  177. static int send_protocol_select(MMSContext *mms)
  178. {
  179. char data_string[256];
  180. start_command_packet(mms, CS_PKT_PROTOCOL_SELECT);
  181. insert_command_prefixes(mms, 0, 0xffffffff);
  182. bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
  183. bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
  184. bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
  185. snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
  186. (LOCAL_ADDRESS>>24)&0xff,
  187. (LOCAL_ADDRESS>>16)&0xff,
  188. (LOCAL_ADDRESS>>8)&0xff,
  189. LOCAL_ADDRESS&0xff,
  190. "TCP", // or UDP
  191. LOCAL_PORT);
  192. mms_put_utf16(mms, data_string);
  193. return send_command_packet(mms);
  194. }
  195. static int send_media_file_request(MMSContext *mms)
  196. {
  197. start_command_packet(mms, CS_PKT_MEDIA_FILE_REQUEST);
  198. insert_command_prefixes(mms, 1, 0xffffffff);
  199. bytestream_put_le32(&mms->write_out_ptr, 0);
  200. bytestream_put_le32(&mms->write_out_ptr, 0);
  201. mms_put_utf16(mms, mms->path + 1); // +1 for skip "/"
  202. return send_command_packet(mms);
  203. }
  204. static void handle_packet_stream_changing_type(MMSContext *mms)
  205. {
  206. dprintf(NULL, "Stream changing!\n");
  207. // 40 is the packet header size, 7 is the prefix size.
  208. mms->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
  209. dprintf(NULL, "Changed header prefix to 0x%x", mms->header_packet_id);
  210. }
  211. static int send_keepalive_packet(MMSContext *mms)
  212. {
  213. // respond to a keepalive with a keepalive...
  214. start_command_packet(mms, CS_PKT_KEEPALIVE);
  215. insert_command_prefixes(mms, 1, 0x100FFFF);
  216. return send_command_packet(mms);
  217. }
  218. /** Pad media packets smaller than max_packet_size and/or adjust read position
  219. * after a seek. */
  220. static void pad_media_packet(MMSContext *mms)
  221. {
  222. if(mms->remaining_in_len<mms->asf_packet_len) {
  223. int padding_size = mms->asf_packet_len - mms->remaining_in_len;
  224. memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
  225. mms->remaining_in_len += padding_size;
  226. }
  227. }
  228. /** Read incoming MMST media, header or command packet. */
  229. static MMSSCPacketType get_tcp_server_response(MMSContext *mms)
  230. {
  231. int read_result;
  232. MMSSCPacketType packet_type= -1;
  233. for(;;) {
  234. read_result = url_read_complete(mms->mms_hd, mms->in_buffer, 8);
  235. if (read_result != 8) {
  236. if(read_result < 0) {
  237. av_log(NULL, AV_LOG_ERROR,
  238. "Error reading packet header: %d (%s)\n",
  239. read_result, strerror(read_result));
  240. packet_type = SC_PKT_CANCEL;
  241. } else {
  242. av_log(NULL, AV_LOG_ERROR,
  243. "The server closed the connection\n");
  244. packet_type = SC_PKT_NO_DATA;
  245. }
  246. return packet_type;
  247. }
  248. // handle command packet.
  249. if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
  250. int length_remaining, hr;
  251. mms->incoming_flags= mms->in_buffer[3];
  252. read_result= url_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
  253. if(read_result != 4) {
  254. av_log(NULL, AV_LOG_ERROR,
  255. "Reading command packet length failed: %d (%s)\n",
  256. read_result,
  257. read_result < 0 ? strerror(read_result) :
  258. "The server closed the connection");
  259. return read_result < 0 ? read_result : AVERROR_IO;
  260. }
  261. length_remaining= AV_RL32(mms->in_buffer+8) + 4;
  262. dprintf(NULL, "Length remaining is %d\n", length_remaining);
  263. // read the rest of the packet.
  264. if (length_remaining < 0
  265. || length_remaining > sizeof(mms->in_buffer) - 12) {
  266. av_log(NULL, AV_LOG_ERROR,
  267. "Incoming packet length %d exceeds bufsize %zu\n",
  268. length_remaining, sizeof(mms->in_buffer) - 12);
  269. return AVERROR_INVALIDDATA;
  270. }
  271. read_result = url_read_complete(mms->mms_hd, mms->in_buffer + 12,
  272. length_remaining) ;
  273. if (read_result != length_remaining) {
  274. av_log(NULL, AV_LOG_ERROR,
  275. "Reading pkt data (length=%d) failed: %d (%s)\n",
  276. length_remaining, read_result,
  277. read_result < 0 ? strerror(read_result) :
  278. "The server closed the connection");
  279. return read_result < 0 ? read_result : AVERROR_IO;
  280. }
  281. packet_type= AV_RL16(mms->in_buffer+36);
  282. hr = AV_RL32(mms->in_buffer + 40);
  283. if (hr) {
  284. av_log(NULL, AV_LOG_ERROR,
  285. "Server sent an error status code: 0x%08x\n", hr);
  286. return AVERROR_UNKNOWN;
  287. }
  288. } else {
  289. int length_remaining;
  290. int packet_id_type;
  291. int tmp;
  292. // note we cache the first 8 bytes,
  293. // then fill up the buffer with the others
  294. tmp = AV_RL16(mms->in_buffer + 6);
  295. length_remaining = (tmp - 8) & 0xffff;
  296. mms->incoming_packet_seq = AV_RL32(mms->in_buffer);
  297. packet_id_type = mms->in_buffer[4];
  298. mms->incoming_flags = mms->in_buffer[5];
  299. if (length_remaining < 0
  300. || length_remaining > sizeof(mms->in_buffer) - 8) {
  301. av_log(NULL, AV_LOG_ERROR,
  302. "Data length %d is invalid or too large (max=%zu)\n",
  303. length_remaining, sizeof(mms->in_buffer));
  304. return AVERROR_INVALIDDATA;
  305. }
  306. mms->remaining_in_len = length_remaining;
  307. mms->read_in_ptr = mms->in_buffer;
  308. read_result= url_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
  309. if(read_result != length_remaining) {
  310. av_log(NULL, AV_LOG_ERROR,
  311. "Failed to read packet data of size %d: %d (%s)\n",
  312. length_remaining, read_result,
  313. read_result < 0 ? strerror(read_result) :
  314. "The server closed the connection");
  315. return read_result < 0 ? read_result : AVERROR_IO;
  316. }
  317. // if we successfully read everything.
  318. if(packet_id_type == mms->header_packet_id) {
  319. packet_type = SC_PKT_ASF_HEADER;
  320. // Store the asf header
  321. if(!mms->header_parsed) {
  322. void *p = av_realloc(mms->asf_header,
  323. mms->asf_header_size + mms->remaining_in_len);
  324. if (!p) {
  325. av_freep(&mms->asf_header);
  326. return AVERROR(ENOMEM);
  327. }
  328. mms->asf_header = p;
  329. memcpy(mms->asf_header + mms->asf_header_size,
  330. mms->read_in_ptr, mms->remaining_in_len);
  331. mms->asf_header_size += mms->remaining_in_len;
  332. }
  333. // 0x04 means asf header is sent in multiple packets.
  334. if (mms->incoming_flags == 0x04)
  335. continue;
  336. } else if(packet_id_type == mms->packet_id) {
  337. packet_type = SC_PKT_ASF_MEDIA;
  338. } else {
  339. dprintf(NULL, "packet id type %d is old.", packet_id_type);
  340. continue;
  341. }
  342. }
  343. // preprocess some packet type
  344. if(packet_type == SC_PKT_KEEPALIVE) {
  345. send_keepalive_packet(mms);
  346. continue;
  347. } else if(packet_type == SC_PKT_STREAM_CHANGING) {
  348. handle_packet_stream_changing_type(mms);
  349. } else if(packet_type == SC_PKT_ASF_MEDIA) {
  350. pad_media_packet(mms);
  351. }
  352. return packet_type;
  353. }
  354. }
  355. static int mms_safe_send_recv(MMSContext *mms,
  356. int (*send_fun)(MMSContext *mms),
  357. const MMSSCPacketType expect_type)
  358. {
  359. MMSSCPacketType type;
  360. if(send_fun) {
  361. int ret = send_fun(mms);
  362. if (ret < 0) {
  363. dprintf(NULL, "Send Packet error before expecting recv packet %d\n", expect_type);
  364. return ret;
  365. }
  366. }
  367. if ((type = get_tcp_server_response(mms)) != expect_type) {
  368. av_log(NULL, AV_LOG_ERROR,
  369. "Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n",
  370. type, expect_type);
  371. return AVERROR_INVALIDDATA;
  372. } else {
  373. return 0;
  374. }
  375. }
  376. static int send_media_header_request(MMSContext *mms)
  377. {
  378. start_command_packet(mms, CS_PKT_MEDIA_HEADER_REQUEST);
  379. insert_command_prefixes(mms, 1, 0);
  380. bytestream_put_le32(&mms->write_out_ptr, 0);
  381. bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
  382. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
  383. bytestream_put_le32(&mms->write_out_ptr, 0);
  384. bytestream_put_le32(&mms->write_out_ptr, 0);
  385. bytestream_put_le32(&mms->write_out_ptr, 0);
  386. // the media preroll value in milliseconds?
  387. bytestream_put_le32(&mms->write_out_ptr, 0);
  388. bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
  389. bytestream_put_le32(&mms->write_out_ptr, 2);
  390. bytestream_put_le32(&mms->write_out_ptr, 0);
  391. return send_command_packet(mms);
  392. }
  393. /** Send the initial handshake. */
  394. static int send_startup_packet(MMSContext *mms)
  395. {
  396. char data_string[256];
  397. // SubscriberName is defined in MS specification linked below.
  398. // The guid value can be any valid value.
  399. // http://download.microsoft.com/
  400. // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
  401. snprintf(data_string, sizeof(data_string),
  402. "NSPlayer/7.0.0.1956; {%s}; Host: %s",
  403. "7E667F5D-A661-495E-A512-F55686DDA178", mms->host);
  404. start_command_packet(mms, CS_PKT_INITIAL);
  405. insert_command_prefixes(mms, 0, 0x0004000b);
  406. bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
  407. mms_put_utf16(mms, data_string);
  408. return send_command_packet(mms);
  409. }
  410. static int asf_header_parser(MMSContext *mms)
  411. {
  412. uint8_t *p = mms->asf_header;
  413. uint8_t *end;
  414. int flags, stream_id;
  415. mms->stream_num = 0;
  416. if (mms->asf_header_size < sizeof(ff_asf_guid) * 2 + 22 ||
  417. memcmp(p, ff_asf_header, sizeof(ff_asf_guid))) {
  418. av_log(NULL, AV_LOG_ERROR,
  419. "Corrupt stream (invalid ASF header, size=%d)\n",
  420. mms->asf_header_size);
  421. return AVERROR_INVALIDDATA;
  422. }
  423. end = mms->asf_header + mms->asf_header_size;
  424. p += sizeof(ff_asf_guid) + 14;
  425. while(end - p >= sizeof(ff_asf_guid) + 8) {
  426. uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid));
  427. if (!chunksize || chunksize > end - p) {
  428. av_log(NULL, AV_LOG_ERROR,
  429. "Corrupt stream (header chunksize %"PRId64" is invalid)\n",
  430. chunksize);
  431. return AVERROR_INVALIDDATA;
  432. }
  433. if (!memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) {
  434. /* read packet size */
  435. if (end - p > sizeof(ff_asf_guid) * 2 + 68) {
  436. mms->asf_packet_len = AV_RL32(p + sizeof(ff_asf_guid) * 2 + 64);
  437. if (mms->asf_packet_len <= 0 || mms->asf_packet_len > sizeof(mms->in_buffer)) {
  438. av_log(NULL, AV_LOG_ERROR,
  439. "Corrupt stream (too large pkt_len %d)\n",
  440. mms->asf_packet_len);
  441. return AVERROR_INVALIDDATA;
  442. }
  443. }
  444. } else if (!memcmp(p, ff_asf_stream_header, sizeof(ff_asf_guid))) {
  445. flags = AV_RL16(p + sizeof(ff_asf_guid)*3 + 24);
  446. stream_id = flags & 0x7F;
  447. //The second condition is for checking CS_PKT_STREAM_ID_REQUEST packet size,
  448. //we can calcuate the packet size by stream_num.
  449. //Please see function send_stream_selection_request().
  450. if (mms->stream_num < MAX_STREAMS &&
  451. 46 + mms->stream_num * 6 < sizeof(mms->out_buffer)) {
  452. mms->streams[mms->stream_num].id = stream_id;
  453. mms->stream_num++;
  454. } else {
  455. av_log(NULL, AV_LOG_ERROR,
  456. "Corrupt stream (too many A/V streams)\n");
  457. return AVERROR_INVALIDDATA;
  458. }
  459. } else if (!memcmp(p, ff_asf_head1_guid, sizeof(ff_asf_guid))) {
  460. chunksize = 46; // see references [2] section 3.4. This should be set 46.
  461. }
  462. p += chunksize;
  463. }
  464. return 0;
  465. }
  466. /** Send MMST stream selection command based on the AVStream->discard values. */
  467. static int send_stream_selection_request(MMSContext *mms)
  468. {
  469. int i;
  470. // send the streams we want back...
  471. start_command_packet(mms, CS_PKT_STREAM_ID_REQUEST);
  472. bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
  473. for(i= 0; i<mms->stream_num; i++) {
  474. bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
  475. bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
  476. bytestream_put_le16(&mms->write_out_ptr, 0); // selection
  477. }
  478. return send_command_packet(mms);
  479. }
  480. static int read_data(MMSContext *mms, uint8_t *buf, const int buf_size)
  481. {
  482. int read_size;
  483. read_size = FFMIN(buf_size, mms->remaining_in_len);
  484. memcpy(buf, mms->read_in_ptr, read_size);
  485. mms->remaining_in_len -= read_size;
  486. mms->read_in_ptr += read_size;
  487. return read_size;
  488. }
  489. /** Read at most one media packet (or a whole header). */
  490. static int read_mms_packet(MMSContext *mms, uint8_t *buf, int buf_size)
  491. {
  492. int result = 0;
  493. int size_to_copy;
  494. do {
  495. if(mms->asf_header_read_size < mms->asf_header_size && !mms->is_playing) {
  496. /* Read from ASF header buffer */
  497. size_to_copy= FFMIN(buf_size,
  498. mms->asf_header_size - mms->asf_header_read_size);
  499. memcpy(buf, mms->asf_header + mms->asf_header_read_size, size_to_copy);
  500. mms->asf_header_read_size += size_to_copy;
  501. result += size_to_copy;
  502. dprintf(NULL, "Copied %d bytes from stored header. left: %d\n",
  503. size_to_copy, mms->asf_header_size - mms->asf_header_read_size);
  504. if (mms->asf_header_size == mms->asf_header_read_size) {
  505. av_freep(&mms->asf_header);
  506. mms->is_playing = 1;
  507. }
  508. } else if(mms->remaining_in_len) {
  509. /* Read remaining packet data to buffer.
  510. * the result can not be zero because remaining_in_len is positive.*/
  511. result = read_data(mms, buf, buf_size);
  512. } else {
  513. /* Read from network */
  514. int err = mms_safe_send_recv(mms, NULL, SC_PKT_ASF_MEDIA);
  515. if (err == 0) {
  516. if(mms->remaining_in_len>mms->asf_packet_len) {
  517. av_log(NULL, AV_LOG_ERROR,
  518. "Incoming pktlen %d is larger than ASF pktsize %d\n",
  519. mms->remaining_in_len, mms->asf_packet_len);
  520. result= AVERROR_IO;
  521. } else {
  522. // copy the data to the packet buffer.
  523. result = read_data(mms, buf, buf_size);
  524. if (result == 0) {
  525. dprintf(NULL, "read asf media paket size is zero!\n");
  526. break;
  527. }
  528. }
  529. } else {
  530. dprintf(NULL, "read packet error!\n");
  531. break;
  532. }
  533. }
  534. } while(!result); // only return one packet.
  535. return result;
  536. }
  537. static int send_close_packet(MMSContext *mms)
  538. {
  539. start_command_packet(mms, CS_PKT_STREAM_CLOSE);
  540. insert_command_prefixes(mms, 1, 1);
  541. return send_command_packet(mms);
  542. }
  543. /** Close the MMSH/MMST connection */
  544. static int mms_close(URLContext *h)
  545. {
  546. MMSContext *mms = (MMSContext *)h->priv_data;
  547. if(mms->mms_hd) {
  548. send_close_packet(mms);
  549. url_close(mms->mms_hd);
  550. }
  551. /* free all separately allocated pointers in mms */
  552. av_free(mms->asf_header);
  553. av_freep(&h->priv_data);
  554. return 0;
  555. }
  556. static int mms_open(URLContext *h, const char *uri, int flags)
  557. {
  558. MMSContext *mms;
  559. int port, err;
  560. char tcpname[256];
  561. h->is_streamed = 1;
  562. mms = h->priv_data = av_mallocz(sizeof(MMSContext));
  563. if (!h->priv_data)
  564. return AVERROR(ENOMEM);
  565. // only for MMS over TCP, so set proto = NULL
  566. av_url_split(NULL, 0, NULL, 0,
  567. mms->host, sizeof(mms->host), &port, mms->path,
  568. sizeof(mms->path), uri);
  569. if(port<0)
  570. port = 1755; // defaut mms protocol port
  571. // establish tcp connection.
  572. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mms->host, port, NULL);
  573. err = url_open(&mms->mms_hd, tcpname, URL_RDWR);
  574. if (err)
  575. goto fail;
  576. mms->packet_id = 3; // default, initial value.
  577. mms->header_packet_id = 2; // default, initial value.
  578. err = mms_safe_send_recv(mms, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
  579. if (err)
  580. goto fail;
  581. err = mms_safe_send_recv(mms, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
  582. if (err)
  583. goto fail;
  584. err = mms_safe_send_recv(mms, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
  585. if (err)
  586. goto fail;
  587. err = mms_safe_send_recv(mms, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
  588. if (err)
  589. goto fail;
  590. err = mms_safe_send_recv(mms, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
  591. if (err)
  592. goto fail;
  593. err = mms_safe_send_recv(mms, NULL, SC_PKT_ASF_HEADER);
  594. if (err)
  595. goto fail;
  596. if((mms->incoming_flags != 0X08) && (mms->incoming_flags != 0X0C))
  597. goto fail;
  598. err = asf_header_parser(mms);
  599. if (err) {
  600. dprintf(NULL, "asf header parsed failed!\n");
  601. goto fail;
  602. }
  603. mms->header_parsed = 1;
  604. if (!mms->asf_packet_len || !mms->stream_num)
  605. goto fail;
  606. dprintf(NULL, "Leaving open (success)\n");
  607. return 0;
  608. fail:
  609. mms_close(h);
  610. dprintf(NULL, "Leaving open (failure: %d)\n", err);
  611. return err;
  612. }
  613. static int send_media_packet_request(MMSContext *mms)
  614. {
  615. start_command_packet(mms, CS_PKT_START_FROM_PKT_ID);
  616. insert_command_prefixes(mms, 1, 0x0001FFFF);
  617. bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
  618. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
  619. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
  620. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  621. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  622. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  623. bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
  624. mms->packet_id++; // new packet_id
  625. bytestream_put_le32(&mms->write_out_ptr, mms->packet_id);
  626. return send_command_packet(mms);
  627. }
  628. static void clear_stream_buffers(MMSContext *mms)
  629. {
  630. mms->remaining_in_len = 0;
  631. mms->read_in_ptr = mms->in_buffer;
  632. }
  633. /** Read ASF data through the protocol. */
  634. static int mms_read(URLContext *h, uint8_t *buf, int size)
  635. {
  636. /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
  637. MMSContext *mms = h->priv_data;
  638. int result = 0;
  639. /* Since we read the header at open(), this shouldn't be possible */
  640. assert(mms->header_parsed);
  641. if (!mms->is_playing) {
  642. dprintf(NULL, "mms_read() before play().\n");
  643. clear_stream_buffers(mms);
  644. result = mms_safe_send_recv(mms, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
  645. if (result)
  646. return result;
  647. // send media packet request
  648. result = mms_safe_send_recv(mms, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
  649. if (result) {
  650. return result;
  651. }
  652. }
  653. return read_mms_packet(mms, buf, size);
  654. }
  655. URLProtocol mmst_protocol = {
  656. "mmst",
  657. mms_open,
  658. mms_read,
  659. NULL, // write
  660. NULL, // seek
  661. mms_close,
  662. };