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.

639 lines
24KB

  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 MMSTContext {
  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 int 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. if (len < 0)
  149. return len;
  150. mms->write_out_ptr += len;
  151. return 0;
  152. }
  153. static int send_time_test_data(MMSTContext *mmst)
  154. {
  155. start_command_packet(mmst, CS_PKT_TIMING_DATA_REQUEST);
  156. insert_command_prefixes(&mmst->mms, 0x00f0f0f0, 0x0004000b);
  157. return send_command_packet(mmst);
  158. }
  159. static int send_protocol_select(MMSTContext *mmst)
  160. {
  161. int ret;
  162. char data_string[256];
  163. MMSContext *mms = &mmst->mms;
  164. start_command_packet(mmst, CS_PKT_PROTOCOL_SELECT);
  165. insert_command_prefixes(mms, 0, 0xffffffff);
  166. bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
  167. bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
  168. bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
  169. snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
  170. (LOCAL_ADDRESS>>24)&0xff,
  171. (LOCAL_ADDRESS>>16)&0xff,
  172. (LOCAL_ADDRESS>>8)&0xff,
  173. LOCAL_ADDRESS&0xff,
  174. "TCP", // or UDP
  175. LOCAL_PORT);
  176. if ((ret = mms_put_utf16(mms, data_string)) < 0)
  177. return ret;
  178. return send_command_packet(mmst);
  179. }
  180. static int send_media_file_request(MMSTContext *mmst)
  181. {
  182. int ret;
  183. MMSContext *mms = &mmst->mms;
  184. start_command_packet(mmst, CS_PKT_MEDIA_FILE_REQUEST);
  185. insert_command_prefixes(mms, 1, 0xffffffff);
  186. bytestream_put_le32(&mms->write_out_ptr, 0);
  187. bytestream_put_le32(&mms->write_out_ptr, 0);
  188. if ((ret = mms_put_utf16(mms, mmst->path + 1)) < 0) // +1 for skip "/"
  189. return ret;
  190. return send_command_packet(mmst);
  191. }
  192. static void handle_packet_stream_changing_type(MMSTContext *mmst)
  193. {
  194. MMSContext *mms = &mmst->mms;
  195. av_log(NULL, AV_LOG_TRACE, "Stream changing!\n");
  196. // 40 is the packet header size, 7 is the prefix size.
  197. mmst->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
  198. av_log(NULL, AV_LOG_TRACE, "Changed header prefix to 0x%x", mmst->header_packet_id);
  199. }
  200. static int send_keepalive_packet(MMSTContext *mmst)
  201. {
  202. // respond to a keepalive with a keepalive...
  203. start_command_packet(mmst, CS_PKT_KEEPALIVE);
  204. insert_command_prefixes(&mmst->mms, 1, 0x100FFFF);
  205. return send_command_packet(mmst);
  206. }
  207. /** Pad media packets smaller than max_packet_size and/or adjust read position
  208. * after a seek. */
  209. static void pad_media_packet(MMSContext *mms)
  210. {
  211. if(mms->remaining_in_len<mms->asf_packet_len) {
  212. int padding_size = mms->asf_packet_len - mms->remaining_in_len;
  213. memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
  214. mms->remaining_in_len += padding_size;
  215. }
  216. }
  217. /** Read incoming MMST media, header or command packet. */
  218. static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
  219. {
  220. int read_result;
  221. MMSSCPacketType packet_type= -1;
  222. MMSContext *mms = &mmst->mms;
  223. for(;;) {
  224. read_result = ffurl_read_complete(mms->mms_hd, mms->in_buffer, 8);
  225. if (read_result != 8) {
  226. if(read_result < 0) {
  227. av_log(NULL, AV_LOG_ERROR,
  228. "Error reading packet header: %d (%s)\n",
  229. read_result, strerror(AVUNERROR(read_result)));
  230. packet_type = SC_PKT_CANCEL;
  231. } else {
  232. av_log(NULL, AV_LOG_ERROR,
  233. "The server closed the connection\n");
  234. packet_type = SC_PKT_NO_DATA;
  235. }
  236. return packet_type;
  237. }
  238. // handle command packet.
  239. if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
  240. int length_remaining, hr;
  241. mmst->incoming_flags= mms->in_buffer[3];
  242. read_result= ffurl_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
  243. if(read_result != 4) {
  244. av_log(NULL, AV_LOG_ERROR,
  245. "Reading command packet length failed: %d (%s)\n",
  246. read_result,
  247. read_result < 0 ? strerror(AVUNERROR(read_result)) :
  248. "The server closed the connection");
  249. return read_result < 0 ? read_result : AVERROR(EIO);
  250. }
  251. length_remaining= AV_RL32(mms->in_buffer+8) + 4;
  252. av_log(NULL, AV_LOG_TRACE, "Length remaining is %d\n", length_remaining);
  253. // read the rest of the packet.
  254. if (length_remaining < 0
  255. || length_remaining > sizeof(mms->in_buffer) - 12) {
  256. av_log(NULL, AV_LOG_ERROR,
  257. "Incoming packet length %d exceeds bufsize %"SIZE_SPECIFIER"\n",
  258. length_remaining, sizeof(mms->in_buffer) - 12);
  259. return AVERROR_INVALIDDATA;
  260. }
  261. read_result = ffurl_read_complete(mms->mms_hd, mms->in_buffer + 12,
  262. length_remaining) ;
  263. if (read_result != length_remaining) {
  264. av_log(NULL, AV_LOG_ERROR,
  265. "Reading pkt data (length=%d) failed: %d (%s)\n",
  266. length_remaining, read_result,
  267. read_result < 0 ? strerror(AVUNERROR(read_result)) :
  268. "The server closed the connection");
  269. return read_result < 0 ? read_result : AVERROR(EIO);
  270. }
  271. packet_type= AV_RL16(mms->in_buffer+36);
  272. if (read_result >= 44 && (hr = AV_RL32(mms->in_buffer + 40))) {
  273. av_log(NULL, AV_LOG_ERROR,
  274. "Server sent a message with packet type 0x%x and error status code 0x%08x\n", packet_type, hr);
  275. return AVERROR(EINVAL);
  276. }
  277. } else {
  278. int length_remaining;
  279. int packet_id_type;
  280. int tmp;
  281. // note we cache the first 8 bytes,
  282. // then fill up the buffer with the others
  283. tmp = AV_RL16(mms->in_buffer + 6);
  284. length_remaining = (tmp - 8) & 0xffff;
  285. mmst->incoming_packet_seq = AV_RL32(mms->in_buffer);
  286. packet_id_type = mms->in_buffer[4];
  287. mmst->incoming_flags = mms->in_buffer[5];
  288. if (length_remaining < 0
  289. || length_remaining > sizeof(mms->in_buffer) - 8) {
  290. av_log(NULL, AV_LOG_ERROR,
  291. "Data length %d is invalid or too large (max=%"SIZE_SPECIFIER")\n",
  292. length_remaining, sizeof(mms->in_buffer));
  293. return AVERROR_INVALIDDATA;
  294. }
  295. mms->remaining_in_len = length_remaining;
  296. mms->read_in_ptr = mms->in_buffer;
  297. read_result= ffurl_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
  298. if(read_result != length_remaining) {
  299. av_log(NULL, AV_LOG_ERROR,
  300. "Failed to read packet data of size %d: %d (%s)\n",
  301. length_remaining, read_result,
  302. read_result < 0 ? strerror(AVUNERROR(read_result)) :
  303. "The server closed the connection");
  304. return read_result < 0 ? read_result : AVERROR(EIO);
  305. }
  306. // if we successfully read everything.
  307. if(packet_id_type == mmst->header_packet_id) {
  308. int err;
  309. packet_type = SC_PKT_ASF_HEADER;
  310. // Store the asf header
  311. if(!mms->header_parsed) {
  312. if ((err = av_reallocp(&mms->asf_header,
  313. mms->asf_header_size +
  314. mms->remaining_in_len)) < 0) {
  315. mms->asf_header_size = 0;
  316. return err;
  317. }
  318. memcpy(mms->asf_header + mms->asf_header_size,
  319. mms->read_in_ptr, mms->remaining_in_len);
  320. mms->asf_header_size += mms->remaining_in_len;
  321. }
  322. // 0x04 means asf header is sent in multiple packets.
  323. if (mmst->incoming_flags == 0x04)
  324. continue;
  325. } else if(packet_id_type == mmst->packet_id) {
  326. packet_type = SC_PKT_ASF_MEDIA;
  327. } else {
  328. av_log(NULL, AV_LOG_TRACE, "packet id type %d is old.", packet_id_type);
  329. continue;
  330. }
  331. }
  332. // preprocess some packet type
  333. if(packet_type == SC_PKT_KEEPALIVE) {
  334. send_keepalive_packet(mmst);
  335. continue;
  336. } else if(packet_type == SC_PKT_STREAM_CHANGING) {
  337. handle_packet_stream_changing_type(mmst);
  338. } else if(packet_type == SC_PKT_ASF_MEDIA) {
  339. pad_media_packet(mms);
  340. }
  341. return packet_type;
  342. }
  343. }
  344. static int mms_safe_send_recv(MMSTContext *mmst,
  345. int (*send_fun)(MMSTContext *mmst),
  346. const MMSSCPacketType expect_type)
  347. {
  348. MMSSCPacketType type;
  349. if(send_fun) {
  350. int ret = send_fun(mmst);
  351. if (ret < 0) {
  352. av_log(NULL, AV_LOG_TRACE, "Send Packet error before expecting recv packet %d\n", expect_type);
  353. return ret;
  354. }
  355. }
  356. if ((type = get_tcp_server_response(mmst)) != expect_type) {
  357. av_log(NULL, AV_LOG_ERROR,
  358. "Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n",
  359. type, expect_type);
  360. return AVERROR_INVALIDDATA;
  361. } else {
  362. return 0;
  363. }
  364. }
  365. static int send_media_header_request(MMSTContext *mmst)
  366. {
  367. MMSContext *mms = &mmst->mms;
  368. start_command_packet(mmst, CS_PKT_MEDIA_HEADER_REQUEST);
  369. insert_command_prefixes(mms, 1, 0);
  370. bytestream_put_le32(&mms->write_out_ptr, 0);
  371. bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
  372. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
  373. bytestream_put_le32(&mms->write_out_ptr, 0);
  374. bytestream_put_le32(&mms->write_out_ptr, 0);
  375. bytestream_put_le32(&mms->write_out_ptr, 0);
  376. // the media preroll value in milliseconds?
  377. bytestream_put_le32(&mms->write_out_ptr, 0);
  378. bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
  379. bytestream_put_le32(&mms->write_out_ptr, 2);
  380. bytestream_put_le32(&mms->write_out_ptr, 0);
  381. return send_command_packet(mmst);
  382. }
  383. /** Send the initial handshake. */
  384. static int send_startup_packet(MMSTContext *mmst)
  385. {
  386. char data_string[256];
  387. int ret;
  388. MMSContext *mms = &mmst->mms;
  389. // SubscriberName is defined in MS specification linked below.
  390. // The guid value can be any valid value.
  391. // http://download.microsoft.com/
  392. // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
  393. snprintf(data_string, sizeof(data_string),
  394. "NSPlayer/7.0.0.1956; {%s}; Host: %s",
  395. "7E667F5D-A661-495E-A512-F55686DDA178", mmst->host);
  396. start_command_packet(mmst, CS_PKT_INITIAL);
  397. insert_command_prefixes(mms, 0, 0x0004000b);
  398. bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
  399. if ((ret = mms_put_utf16(mms, data_string)) < 0)
  400. return ret;
  401. return send_command_packet(mmst);
  402. }
  403. /** Send MMST stream selection command based on the AVStream->discard values. */
  404. static int send_stream_selection_request(MMSTContext *mmst)
  405. {
  406. int i;
  407. MMSContext *mms = &mmst->mms;
  408. // send the streams we want back...
  409. start_command_packet(mmst, CS_PKT_STREAM_ID_REQUEST);
  410. bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
  411. for(i= 0; i<mms->stream_num; i++) {
  412. bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
  413. bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
  414. bytestream_put_le16(&mms->write_out_ptr, 0); // selection
  415. }
  416. return send_command_packet(mmst);
  417. }
  418. static int send_close_packet(MMSTContext *mmst)
  419. {
  420. start_command_packet(mmst, CS_PKT_STREAM_CLOSE);
  421. insert_command_prefixes(&mmst->mms, 1, 1);
  422. return send_command_packet(mmst);
  423. }
  424. /** Close the MMSH/MMST connection */
  425. static int mms_close(URLContext *h)
  426. {
  427. MMSTContext *mmst = (MMSTContext *)h->priv_data;
  428. MMSContext *mms = &mmst->mms;
  429. if(mms->mms_hd) {
  430. send_close_packet(mmst);
  431. ffurl_close(mms->mms_hd);
  432. }
  433. /* free all separately allocated pointers in mms */
  434. av_freep(&mms->streams);
  435. av_freep(&mms->asf_header);
  436. return 0;
  437. }
  438. static int send_media_packet_request(MMSTContext *mmst)
  439. {
  440. MMSContext *mms = &mmst->mms;
  441. start_command_packet(mmst, CS_PKT_START_FROM_PKT_ID);
  442. insert_command_prefixes(mms, 1, 0x0001FFFF);
  443. bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
  444. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
  445. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
  446. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  447. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  448. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  449. bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
  450. mmst->packet_id++; // new packet_id
  451. bytestream_put_le32(&mms->write_out_ptr, mmst->packet_id);
  452. return send_command_packet(mmst);
  453. }
  454. static void clear_stream_buffers(MMSContext *mms)
  455. {
  456. mms->remaining_in_len = 0;
  457. mms->read_in_ptr = mms->in_buffer;
  458. }
  459. static int mms_open(URLContext *h, const char *uri, int flags)
  460. {
  461. MMSTContext *mmst = h->priv_data;
  462. MMSContext *mms;
  463. int port, err;
  464. char tcpname[256];
  465. h->is_streamed = 1;
  466. mms = &mmst->mms;
  467. // only for MMS over TCP, so set proto = NULL
  468. av_url_split(NULL, 0, NULL, 0,
  469. mmst->host, sizeof(mmst->host), &port, mmst->path,
  470. sizeof(mmst->path), uri);
  471. if(port<0)
  472. port = 1755; // defaut mms protocol port
  473. // establish tcp connection.
  474. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);
  475. err = ffurl_open(&mms->mms_hd, tcpname, AVIO_FLAG_READ_WRITE,
  476. &h->interrupt_callback, NULL);
  477. if (err)
  478. goto fail;
  479. mmst->packet_id = 3; // default, initial value.
  480. mmst->header_packet_id = 2; // default, initial value.
  481. err = mms_safe_send_recv(mmst, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
  482. if (err)
  483. goto fail;
  484. err = mms_safe_send_recv(mmst, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
  485. if (err)
  486. goto fail;
  487. err = mms_safe_send_recv(mmst, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
  488. if (err)
  489. goto fail;
  490. err = mms_safe_send_recv(mmst, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
  491. if (err)
  492. goto fail;
  493. err = mms_safe_send_recv(mmst, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
  494. if (err)
  495. goto fail;
  496. err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_HEADER);
  497. if (err)
  498. goto fail;
  499. if((mmst->incoming_flags != 0X08) && (mmst->incoming_flags != 0X0C)) {
  500. av_log(NULL, AV_LOG_ERROR,
  501. "The server does not support MMST (try MMSH or RTSP)\n");
  502. err = AVERROR(EINVAL);
  503. goto fail;
  504. }
  505. err = ff_mms_asf_header_parser(mms);
  506. if (err) {
  507. av_log(NULL, AV_LOG_TRACE, "asf header parsed failed!\n");
  508. goto fail;
  509. }
  510. mms->header_parsed = 1;
  511. if (!mms->asf_packet_len || !mms->stream_num)
  512. goto fail;
  513. clear_stream_buffers(mms);
  514. err = mms_safe_send_recv(mmst, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
  515. if (err)
  516. goto fail;
  517. // send media packet request
  518. err = mms_safe_send_recv(mmst, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
  519. if (err) {
  520. goto fail;
  521. }
  522. av_log(NULL, AV_LOG_TRACE, "Leaving open (success)\n");
  523. return 0;
  524. fail:
  525. mms_close(h);
  526. av_log(NULL, AV_LOG_TRACE, "Leaving open (failure: %d)\n", err);
  527. return err;
  528. }
  529. /** Read ASF data through the protocol. */
  530. static int mms_read(URLContext *h, uint8_t *buf, int size)
  531. {
  532. /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
  533. MMSTContext *mmst = h->priv_data;
  534. MMSContext *mms = &mmst->mms;
  535. int result = 0;
  536. do {
  537. if(mms->asf_header_read_size < mms->asf_header_size) {
  538. /* Read from ASF header buffer */
  539. result = ff_mms_read_header(mms, buf, size);
  540. } else if(mms->remaining_in_len) {
  541. /* Read remaining packet data to buffer.
  542. * the result can not be zero because remaining_in_len is positive.*/
  543. result = ff_mms_read_data(mms, buf, size);
  544. } else {
  545. /* Read from network */
  546. int err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_MEDIA);
  547. if (err == 0) {
  548. if(mms->remaining_in_len>mms->asf_packet_len) {
  549. av_log(NULL, AV_LOG_ERROR,
  550. "Incoming pktlen %d is larger than ASF pktsize %d\n",
  551. mms->remaining_in_len, mms->asf_packet_len);
  552. result= AVERROR(EIO);
  553. } else {
  554. // copy the data to the packet buffer.
  555. result = ff_mms_read_data(mms, buf, size);
  556. if (result == 0) {
  557. av_log(NULL, AV_LOG_TRACE, "Read ASF media packet size is zero!\n");
  558. break;
  559. }
  560. }
  561. } else {
  562. av_log(NULL, AV_LOG_TRACE, "read packet error!\n");
  563. break;
  564. }
  565. }
  566. } while(!result); // only return one packet.
  567. return result;
  568. }
  569. URLProtocol ff_mmst_protocol = {
  570. .name = "mmst",
  571. .url_open = mms_open,
  572. .url_read = mms_read,
  573. .url_close = mms_close,
  574. .priv_data_size = sizeof(MMSTContext),
  575. .flags = URL_PROTOCOL_FLAG_NETWORK,
  576. };