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.

628 lines
23KB

  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 "mms.h"
  31. #include "internal.h"
  32. #include "avio_internal.h"
  33. #include "libavutil/intreadwrite.h"
  34. #include "libavcodec/bytestream.h"
  35. #include "network.h"
  36. #include "url.h"
  37. #define LOCAL_ADDRESS 0xc0a80081 // FIXME get and use correct local ip address.
  38. #define LOCAL_PORT 1037 // as above.
  39. /** Client to server packet types. */
  40. typedef enum {
  41. CS_PKT_INITIAL = 0x01,
  42. CS_PKT_PROTOCOL_SELECT = 0x02,
  43. CS_PKT_MEDIA_FILE_REQUEST = 0x05,
  44. CS_PKT_START_FROM_PKT_ID = 0x07,
  45. CS_PKT_STREAM_PAUSE = 0x09,
  46. CS_PKT_STREAM_CLOSE = 0x0d,
  47. CS_PKT_MEDIA_HEADER_REQUEST = 0x15,
  48. CS_PKT_TIMING_DATA_REQUEST = 0x18,
  49. CS_PKT_USER_PASSWORD = 0x1a,
  50. CS_PKT_KEEPALIVE = 0x1b,
  51. CS_PKT_STREAM_ID_REQUEST = 0x33,
  52. } MMSCSPacketType;
  53. /** Server to client packet types. */
  54. typedef enum {
  55. /** Control packets. */
  56. /*@{*/
  57. SC_PKT_CLIENT_ACCEPTED = 0x01,
  58. SC_PKT_PROTOCOL_ACCEPTED = 0x02,
  59. SC_PKT_PROTOCOL_FAILED = 0x03,
  60. SC_PKT_MEDIA_PKT_FOLLOWS = 0x05,
  61. SC_PKT_MEDIA_FILE_DETAILS = 0x06,
  62. SC_PKT_HEADER_REQUEST_ACCEPTED = 0x11,
  63. SC_PKT_TIMING_TEST_REPLY = 0x15,
  64. SC_PKT_PASSWORD_REQUIRED = 0x1a,
  65. SC_PKT_KEEPALIVE = 0x1b,
  66. SC_PKT_STREAM_STOPPED = 0x1e,
  67. SC_PKT_STREAM_CHANGING = 0x20,
  68. SC_PKT_STREAM_ID_ACCEPTED = 0x21,
  69. /*@}*/
  70. /** Pseudo packets. */
  71. /*@{*/
  72. SC_PKT_CANCEL = -1,
  73. SC_PKT_NO_DATA = -2,
  74. /*@}*/
  75. /** Data packets. */
  76. /*@{*/
  77. SC_PKT_ASF_HEADER = 0x010000,// make it bigger than 0xFF in case of
  78. SC_PKT_ASF_MEDIA = 0x010001,// receiving false data packets.
  79. /*@}*/
  80. } MMSSCPacketType;
  81. typedef struct {
  82. MMSContext mms;
  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. int incoming_packet_seq; ///< Incoming packet sequence number.
  87. int incoming_flags; ///< Incoming packet flags.
  88. int packet_id; ///< Identifier for packets in the current stream.
  89. unsigned int header_packet_id; ///< default is 2.
  90. } MMSTContext;
  91. /** Create MMST command packet header */
  92. static void start_command_packet(MMSTContext *mmst, MMSCSPacketType packet_type)
  93. {
  94. MMSContext *mms = &mmst->mms;
  95. mms->write_out_ptr = mms->out_buffer;
  96. bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
  97. bytestream_put_le32(&mms->write_out_ptr, 0xb00bface);
  98. bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
  99. bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' '));
  100. bytestream_put_le32(&mms->write_out_ptr, 0);
  101. bytestream_put_le32(&mms->write_out_ptr, mmst->outgoing_packet_seq++);
  102. bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
  103. bytestream_put_le32(&mms->write_out_ptr, 0);
  104. bytestream_put_le16(&mms->write_out_ptr, packet_type);
  105. bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
  106. }
  107. /** Add prefixes to MMST command packet. */
  108. static void insert_command_prefixes(MMSContext *mms,
  109. uint32_t prefix1, uint32_t prefix2)
  110. {
  111. bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
  112. bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
  113. }
  114. /** Send a prepared MMST command packet. */
  115. static int send_command_packet(MMSTContext *mmst)
  116. {
  117. MMSContext *mms = &mmst->mms;
  118. int len= mms->write_out_ptr - mms->out_buffer;
  119. int exact_length = FFALIGN(len, 8);
  120. int first_length= exact_length - 16;
  121. int len8= first_length/8;
  122. int write_result;
  123. // update packet length fields.
  124. AV_WL32(mms->out_buffer + 8, first_length);
  125. AV_WL32(mms->out_buffer + 16, len8);
  126. AV_WL32(mms->out_buffer + 32, len8-2);
  127. memset(mms->write_out_ptr, 0, exact_length - len);
  128. // write it out.
  129. write_result= ffurl_write(mms->mms_hd, mms->out_buffer, exact_length);
  130. if(write_result != exact_length) {
  131. av_log(NULL, AV_LOG_ERROR,
  132. "Failed to write data of length %d: %d (%s)\n",
  133. exact_length, write_result,
  134. write_result < 0 ? strerror(AVUNERROR(write_result)) :
  135. "The server closed the connection");
  136. return AVERROR(EIO);
  137. }
  138. return 0;
  139. }
  140. static void mms_put_utf16(MMSContext *mms, const uint8_t *src)
  141. {
  142. AVIOContext bic;
  143. int size = mms->write_out_ptr - mms->out_buffer;
  144. int len;
  145. ffio_init_context(&bic, mms->write_out_ptr,
  146. sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
  147. len = avio_put_str16le(&bic, src);
  148. mms->write_out_ptr += len;
  149. }
  150. static int send_time_test_data(MMSTContext *mmst)
  151. {
  152. start_command_packet(mmst, CS_PKT_TIMING_DATA_REQUEST);
  153. insert_command_prefixes(&mmst->mms, 0x00f0f0f0, 0x0004000b);
  154. return send_command_packet(mmst);
  155. }
  156. static int send_protocol_select(MMSTContext *mmst)
  157. {
  158. char data_string[256];
  159. MMSContext *mms = &mmst->mms;
  160. start_command_packet(mmst, CS_PKT_PROTOCOL_SELECT);
  161. insert_command_prefixes(mms, 0, 0xffffffff);
  162. bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
  163. bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
  164. bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
  165. snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
  166. (LOCAL_ADDRESS>>24)&0xff,
  167. (LOCAL_ADDRESS>>16)&0xff,
  168. (LOCAL_ADDRESS>>8)&0xff,
  169. LOCAL_ADDRESS&0xff,
  170. "TCP", // or UDP
  171. LOCAL_PORT);
  172. mms_put_utf16(mms, data_string);
  173. return send_command_packet(mmst);
  174. }
  175. static int send_media_file_request(MMSTContext *mmst)
  176. {
  177. MMSContext *mms = &mmst->mms;
  178. start_command_packet(mmst, CS_PKT_MEDIA_FILE_REQUEST);
  179. insert_command_prefixes(mms, 1, 0xffffffff);
  180. bytestream_put_le32(&mms->write_out_ptr, 0);
  181. bytestream_put_le32(&mms->write_out_ptr, 0);
  182. mms_put_utf16(mms, mmst->path + 1); // +1 for skip "/"
  183. return send_command_packet(mmst);
  184. }
  185. static void handle_packet_stream_changing_type(MMSTContext *mmst)
  186. {
  187. MMSContext *mms = &mmst->mms;
  188. av_dlog(NULL, "Stream changing!\n");
  189. // 40 is the packet header size, 7 is the prefix size.
  190. mmst->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
  191. av_dlog(NULL, "Changed header prefix to 0x%x", mmst->header_packet_id);
  192. }
  193. static int send_keepalive_packet(MMSTContext *mmst)
  194. {
  195. // respond to a keepalive with a keepalive...
  196. start_command_packet(mmst, CS_PKT_KEEPALIVE);
  197. insert_command_prefixes(&mmst->mms, 1, 0x100FFFF);
  198. return send_command_packet(mmst);
  199. }
  200. /** Pad media packets smaller than max_packet_size and/or adjust read position
  201. * after a seek. */
  202. static void pad_media_packet(MMSContext *mms)
  203. {
  204. if(mms->remaining_in_len<mms->asf_packet_len) {
  205. int padding_size = mms->asf_packet_len - mms->remaining_in_len;
  206. memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
  207. mms->remaining_in_len += padding_size;
  208. }
  209. }
  210. /** Read incoming MMST media, header or command packet. */
  211. static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
  212. {
  213. int read_result;
  214. MMSSCPacketType packet_type= -1;
  215. MMSContext *mms = &mmst->mms;
  216. for(;;) {
  217. read_result = ffurl_read_complete(mms->mms_hd, mms->in_buffer, 8);
  218. if (read_result != 8) {
  219. if(read_result < 0) {
  220. av_log(NULL, AV_LOG_ERROR,
  221. "Error reading packet header: %d (%s)\n",
  222. read_result, strerror(AVUNERROR(read_result)));
  223. packet_type = SC_PKT_CANCEL;
  224. } else {
  225. av_log(NULL, AV_LOG_ERROR,
  226. "The server closed the connection\n");
  227. packet_type = SC_PKT_NO_DATA;
  228. }
  229. return packet_type;
  230. }
  231. // handle command packet.
  232. if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
  233. int length_remaining, hr;
  234. mmst->incoming_flags= mms->in_buffer[3];
  235. read_result= ffurl_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
  236. if(read_result != 4) {
  237. av_log(NULL, AV_LOG_ERROR,
  238. "Reading command packet length failed: %d (%s)\n",
  239. read_result,
  240. read_result < 0 ? strerror(AVUNERROR(read_result)) :
  241. "The server closed the connection");
  242. return read_result < 0 ? read_result : AVERROR(EIO);
  243. }
  244. length_remaining= AV_RL32(mms->in_buffer+8) + 4;
  245. av_dlog(NULL, "Length remaining is %d\n", length_remaining);
  246. // read the rest of the packet.
  247. if (length_remaining < 0
  248. || length_remaining > sizeof(mms->in_buffer) - 12) {
  249. av_log(NULL, AV_LOG_ERROR,
  250. "Incoming packet length %d exceeds bufsize %zu\n",
  251. length_remaining, sizeof(mms->in_buffer) - 12);
  252. return AVERROR_INVALIDDATA;
  253. }
  254. read_result = ffurl_read_complete(mms->mms_hd, mms->in_buffer + 12,
  255. length_remaining) ;
  256. if (read_result != length_remaining) {
  257. av_log(NULL, AV_LOG_ERROR,
  258. "Reading pkt data (length=%d) failed: %d (%s)\n",
  259. length_remaining, read_result,
  260. read_result < 0 ? strerror(AVUNERROR(read_result)) :
  261. "The server closed the connection");
  262. return read_result < 0 ? read_result : AVERROR(EIO);
  263. }
  264. packet_type= AV_RL16(mms->in_buffer+36);
  265. if (read_result >= 44 && (hr = AV_RL32(mms->in_buffer + 40))) {
  266. av_log(NULL, AV_LOG_ERROR,
  267. "Server sent a message with packet type 0x%x and error status code 0x%08x\n", packet_type, hr);
  268. return AVERROR(EINVAL);
  269. }
  270. } else {
  271. int length_remaining;
  272. int packet_id_type;
  273. int tmp;
  274. // note we cache the first 8 bytes,
  275. // then fill up the buffer with the others
  276. tmp = AV_RL16(mms->in_buffer + 6);
  277. length_remaining = (tmp - 8) & 0xffff;
  278. mmst->incoming_packet_seq = AV_RL32(mms->in_buffer);
  279. packet_id_type = mms->in_buffer[4];
  280. mmst->incoming_flags = mms->in_buffer[5];
  281. if (length_remaining < 0
  282. || length_remaining > sizeof(mms->in_buffer) - 8) {
  283. av_log(NULL, AV_LOG_ERROR,
  284. "Data length %d is invalid or too large (max=%zu)\n",
  285. length_remaining, sizeof(mms->in_buffer));
  286. return AVERROR_INVALIDDATA;
  287. }
  288. mms->remaining_in_len = length_remaining;
  289. mms->read_in_ptr = mms->in_buffer;
  290. read_result= ffurl_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
  291. if(read_result != length_remaining) {
  292. av_log(NULL, AV_LOG_ERROR,
  293. "Failed to read packet data of size %d: %d (%s)\n",
  294. length_remaining, read_result,
  295. read_result < 0 ? strerror(AVUNERROR(read_result)) :
  296. "The server closed the connection");
  297. return read_result < 0 ? read_result : AVERROR(EIO);
  298. }
  299. // if we successfully read everything.
  300. if(packet_id_type == mmst->header_packet_id) {
  301. int err;
  302. packet_type = SC_PKT_ASF_HEADER;
  303. // Store the asf header
  304. if(!mms->header_parsed) {
  305. if ((err = av_reallocp(&mms->asf_header,
  306. mms->asf_header_size +
  307. mms->remaining_in_len)) < 0)
  308. return err;
  309. memcpy(mms->asf_header + mms->asf_header_size,
  310. mms->read_in_ptr, mms->remaining_in_len);
  311. mms->asf_header_size += mms->remaining_in_len;
  312. }
  313. // 0x04 means asf header is sent in multiple packets.
  314. if (mmst->incoming_flags == 0x04)
  315. continue;
  316. } else if(packet_id_type == mmst->packet_id) {
  317. packet_type = SC_PKT_ASF_MEDIA;
  318. } else {
  319. av_dlog(NULL, "packet id type %d is old.", packet_id_type);
  320. continue;
  321. }
  322. }
  323. // preprocess some packet type
  324. if(packet_type == SC_PKT_KEEPALIVE) {
  325. send_keepalive_packet(mmst);
  326. continue;
  327. } else if(packet_type == SC_PKT_STREAM_CHANGING) {
  328. handle_packet_stream_changing_type(mmst);
  329. } else if(packet_type == SC_PKT_ASF_MEDIA) {
  330. pad_media_packet(mms);
  331. }
  332. return packet_type;
  333. }
  334. }
  335. static int mms_safe_send_recv(MMSTContext *mmst,
  336. int (*send_fun)(MMSTContext *mmst),
  337. const MMSSCPacketType expect_type)
  338. {
  339. MMSSCPacketType type;
  340. if(send_fun) {
  341. int ret = send_fun(mmst);
  342. if (ret < 0) {
  343. av_dlog(NULL, "Send Packet error before expecting recv packet %d\n", expect_type);
  344. return ret;
  345. }
  346. }
  347. if ((type = get_tcp_server_response(mmst)) != expect_type) {
  348. av_log(NULL, AV_LOG_ERROR,
  349. "Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n",
  350. type, expect_type);
  351. return AVERROR_INVALIDDATA;
  352. } else {
  353. return 0;
  354. }
  355. }
  356. static int send_media_header_request(MMSTContext *mmst)
  357. {
  358. MMSContext *mms = &mmst->mms;
  359. start_command_packet(mmst, CS_PKT_MEDIA_HEADER_REQUEST);
  360. insert_command_prefixes(mms, 1, 0);
  361. bytestream_put_le32(&mms->write_out_ptr, 0);
  362. bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
  363. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
  364. bytestream_put_le32(&mms->write_out_ptr, 0);
  365. bytestream_put_le32(&mms->write_out_ptr, 0);
  366. bytestream_put_le32(&mms->write_out_ptr, 0);
  367. // the media preroll value in milliseconds?
  368. bytestream_put_le32(&mms->write_out_ptr, 0);
  369. bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
  370. bytestream_put_le32(&mms->write_out_ptr, 2);
  371. bytestream_put_le32(&mms->write_out_ptr, 0);
  372. return send_command_packet(mmst);
  373. }
  374. /** Send the initial handshake. */
  375. static int send_startup_packet(MMSTContext *mmst)
  376. {
  377. char data_string[256];
  378. MMSContext *mms = &mmst->mms;
  379. // SubscriberName is defined in MS specification linked below.
  380. // The guid value can be any valid value.
  381. // http://download.microsoft.com/
  382. // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
  383. snprintf(data_string, sizeof(data_string),
  384. "NSPlayer/7.0.0.1956; {%s}; Host: %s",
  385. "7E667F5D-A661-495E-A512-F55686DDA178", mmst->host);
  386. start_command_packet(mmst, CS_PKT_INITIAL);
  387. insert_command_prefixes(mms, 0, 0x0004000b);
  388. bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
  389. mms_put_utf16(mms, data_string);
  390. return send_command_packet(mmst);
  391. }
  392. /** Send MMST stream selection command based on the AVStream->discard values. */
  393. static int send_stream_selection_request(MMSTContext *mmst)
  394. {
  395. int i;
  396. MMSContext *mms = &mmst->mms;
  397. // send the streams we want back...
  398. start_command_packet(mmst, CS_PKT_STREAM_ID_REQUEST);
  399. bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
  400. for(i= 0; i<mms->stream_num; i++) {
  401. bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
  402. bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
  403. bytestream_put_le16(&mms->write_out_ptr, 0); // selection
  404. }
  405. return send_command_packet(mmst);
  406. }
  407. static int send_close_packet(MMSTContext *mmst)
  408. {
  409. start_command_packet(mmst, CS_PKT_STREAM_CLOSE);
  410. insert_command_prefixes(&mmst->mms, 1, 1);
  411. return send_command_packet(mmst);
  412. }
  413. /** Close the MMSH/MMST connection */
  414. static int mms_close(URLContext *h)
  415. {
  416. MMSTContext *mmst = (MMSTContext *)h->priv_data;
  417. MMSContext *mms = &mmst->mms;
  418. if(mms->mms_hd) {
  419. send_close_packet(mmst);
  420. ffurl_close(mms->mms_hd);
  421. }
  422. /* free all separately allocated pointers in mms */
  423. av_free(mms->streams);
  424. av_free(mms->asf_header);
  425. return 0;
  426. }
  427. static int send_media_packet_request(MMSTContext *mmst)
  428. {
  429. MMSContext *mms = &mmst->mms;
  430. start_command_packet(mmst, CS_PKT_START_FROM_PKT_ID);
  431. insert_command_prefixes(mms, 1, 0x0001FFFF);
  432. bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
  433. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
  434. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
  435. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  436. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  437. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  438. bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
  439. mmst->packet_id++; // new packet_id
  440. bytestream_put_le32(&mms->write_out_ptr, mmst->packet_id);
  441. return send_command_packet(mmst);
  442. }
  443. static void clear_stream_buffers(MMSContext *mms)
  444. {
  445. mms->remaining_in_len = 0;
  446. mms->read_in_ptr = mms->in_buffer;
  447. }
  448. static int mms_open(URLContext *h, const char *uri, int flags)
  449. {
  450. MMSTContext *mmst = h->priv_data;
  451. MMSContext *mms;
  452. int port, err;
  453. char tcpname[256];
  454. h->is_streamed = 1;
  455. mms = &mmst->mms;
  456. // only for MMS over TCP, so set proto = NULL
  457. av_url_split(NULL, 0, NULL, 0,
  458. mmst->host, sizeof(mmst->host), &port, mmst->path,
  459. sizeof(mmst->path), uri);
  460. if(port<0)
  461. port = 1755; // defaut mms protocol port
  462. // establish tcp connection.
  463. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);
  464. err = ffurl_open(&mms->mms_hd, tcpname, AVIO_FLAG_READ_WRITE,
  465. &h->interrupt_callback, NULL);
  466. if (err)
  467. goto fail;
  468. mmst->packet_id = 3; // default, initial value.
  469. mmst->header_packet_id = 2; // default, initial value.
  470. err = mms_safe_send_recv(mmst, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
  471. if (err)
  472. goto fail;
  473. err = mms_safe_send_recv(mmst, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
  474. if (err)
  475. goto fail;
  476. err = mms_safe_send_recv(mmst, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
  477. if (err)
  478. goto fail;
  479. err = mms_safe_send_recv(mmst, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
  480. if (err)
  481. goto fail;
  482. err = mms_safe_send_recv(mmst, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
  483. if (err)
  484. goto fail;
  485. err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_HEADER);
  486. if (err)
  487. goto fail;
  488. if((mmst->incoming_flags != 0X08) && (mmst->incoming_flags != 0X0C)) {
  489. av_log(NULL, AV_LOG_ERROR,
  490. "The server does not support MMST (try MMSH or RTSP)\n");
  491. err = AVERROR(EINVAL);
  492. goto fail;
  493. }
  494. err = ff_mms_asf_header_parser(mms);
  495. if (err) {
  496. av_dlog(NULL, "asf header parsed failed!\n");
  497. goto fail;
  498. }
  499. mms->header_parsed = 1;
  500. if (!mms->asf_packet_len || !mms->stream_num)
  501. goto fail;
  502. clear_stream_buffers(mms);
  503. err = mms_safe_send_recv(mmst, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
  504. if (err)
  505. goto fail;
  506. // send media packet request
  507. err = mms_safe_send_recv(mmst, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
  508. if (err) {
  509. goto fail;
  510. }
  511. av_dlog(NULL, "Leaving open (success)\n");
  512. return 0;
  513. fail:
  514. mms_close(h);
  515. av_dlog(NULL, "Leaving open (failure: %d)\n", err);
  516. return err;
  517. }
  518. /** Read ASF data through the protocol. */
  519. static int mms_read(URLContext *h, uint8_t *buf, int size)
  520. {
  521. /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
  522. MMSTContext *mmst = h->priv_data;
  523. MMSContext *mms = &mmst->mms;
  524. int result = 0;
  525. do {
  526. if(mms->asf_header_read_size < mms->asf_header_size) {
  527. /* Read from ASF header buffer */
  528. result = ff_mms_read_header(mms, buf, size);
  529. } else if(mms->remaining_in_len) {
  530. /* Read remaining packet data to buffer.
  531. * the result can not be zero because remaining_in_len is positive.*/
  532. result = ff_mms_read_data(mms, buf, size);
  533. } else {
  534. /* Read from network */
  535. int err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_MEDIA);
  536. if (err == 0) {
  537. if(mms->remaining_in_len>mms->asf_packet_len) {
  538. av_log(NULL, AV_LOG_ERROR,
  539. "Incoming pktlen %d is larger than ASF pktsize %d\n",
  540. mms->remaining_in_len, mms->asf_packet_len);
  541. result= AVERROR(EIO);
  542. } else {
  543. // copy the data to the packet buffer.
  544. result = ff_mms_read_data(mms, buf, size);
  545. if (result == 0) {
  546. av_dlog(NULL, "Read ASF media packet size is zero!\n");
  547. break;
  548. }
  549. }
  550. } else {
  551. av_dlog(NULL, "read packet error!\n");
  552. break;
  553. }
  554. }
  555. } while(!result); // only return one packet.
  556. return result;
  557. }
  558. URLProtocol ff_mmst_protocol = {
  559. .name = "mmst",
  560. .url_open = mms_open,
  561. .url_read = mms_read,
  562. .url_close = mms_close,
  563. .priv_data_size = sizeof(MMSTContext),
  564. .flags = URL_PROTOCOL_FLAG_NETWORK,
  565. };