mmst.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  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. /*@}*/
  110. int stream_num; ///< stream numbers.
  111. int is_playing;
  112. } MMSContext;
  113. /** Create MMST command packet header */
  114. static void start_command_packet(MMSContext *mms, MMSCSPacketType packet_type)
  115. {
  116. mms->write_out_ptr = mms->out_buffer;
  117. bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
  118. bytestream_put_le32(&mms->write_out_ptr, 0xb00bface);
  119. bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
  120. bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' '));
  121. bytestream_put_le32(&mms->write_out_ptr, 0);
  122. bytestream_put_le32(&mms->write_out_ptr, mms->outgoing_packet_seq++);
  123. bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
  124. bytestream_put_le32(&mms->write_out_ptr, 0);
  125. bytestream_put_le16(&mms->write_out_ptr, packet_type);
  126. bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
  127. }
  128. /** Add prefixes to MMST command packet. */
  129. static void insert_command_prefixes(MMSContext *mms,
  130. uint32_t prefix1, uint32_t prefix2)
  131. {
  132. bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
  133. bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
  134. }
  135. /** Send a prepared MMST command packet. */
  136. static int send_command_packet(MMSContext *mms)
  137. {
  138. int len= mms->write_out_ptr - mms->out_buffer;
  139. int exact_length = (len + 7) & ~7;
  140. int first_length= exact_length - 16;
  141. int len8= first_length/8;
  142. int write_result;
  143. // update packet length fields.
  144. AV_WL32(mms->out_buffer + 8, first_length);
  145. AV_WL32(mms->out_buffer + 16, len8);
  146. AV_WL32(mms->out_buffer + 32, len8-2);
  147. memset(mms->write_out_ptr, 0, exact_length - len);
  148. // write it out.
  149. write_result= url_write(mms->mms_hd, mms->out_buffer, exact_length);
  150. if(write_result != exact_length) {
  151. dprintf(NULL, "url_write returned: %d != %d\n",
  152. write_result, exact_length);
  153. return AVERROR_IO;
  154. }
  155. return 0;
  156. }
  157. static void mms_put_utf16(MMSContext *mms, uint8_t *src)
  158. {
  159. ByteIOContext bic;
  160. int size = mms->write_out_ptr - mms->out_buffer;
  161. int len;
  162. init_put_byte(&bic, mms->write_out_ptr,
  163. sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
  164. len = ff_put_str16_nolen(&bic, src);
  165. mms->write_out_ptr += len;
  166. }
  167. static int send_time_test_data(MMSContext *mms)
  168. {
  169. start_command_packet(mms, CS_PKT_TIMING_DATA_REQUEST);
  170. insert_command_prefixes(mms, 0xf0f0f0f1, 0x0004000b);
  171. return send_command_packet(mms);
  172. }
  173. static int send_protocol_select(MMSContext *mms)
  174. {
  175. char data_string[256];
  176. start_command_packet(mms, CS_PKT_PROTOCOL_SELECT);
  177. insert_command_prefixes(mms, 0, 0xffffffff);
  178. bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
  179. bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
  180. bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
  181. snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
  182. (LOCAL_ADDRESS>>24)&0xff,
  183. (LOCAL_ADDRESS>>16)&0xff,
  184. (LOCAL_ADDRESS>>8)&0xff,
  185. LOCAL_ADDRESS&0xff,
  186. "TCP", // or UDP
  187. LOCAL_PORT);
  188. mms_put_utf16(mms, data_string);
  189. return send_command_packet(mms);
  190. }
  191. static int send_media_file_request(MMSContext *mms)
  192. {
  193. start_command_packet(mms, CS_PKT_MEDIA_FILE_REQUEST);
  194. insert_command_prefixes(mms, 1, 0xffffffff);
  195. bytestream_put_le32(&mms->write_out_ptr, 0);
  196. bytestream_put_le32(&mms->write_out_ptr, 0);
  197. mms_put_utf16(mms, mms->path + 1); // +1 for skip "/"
  198. return send_command_packet(mms);
  199. }
  200. static void handle_packet_stream_changing_type(MMSContext *mms)
  201. {
  202. dprintf(NULL, "Stream changing!\n");
  203. // 40 is the packet header size, 7 is the prefix size.
  204. mms->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
  205. dprintf(NULL, "Changed header prefix to 0x%x", mms->header_packet_id);
  206. }
  207. static int send_keepalive_packet(MMSContext *mms)
  208. {
  209. // respond to a keepalive with a keepalive...
  210. start_command_packet(mms, CS_PKT_KEEPALIVE);
  211. insert_command_prefixes(mms, 1, 0x100FFFF);
  212. return send_command_packet(mms);
  213. }
  214. /** Pad media packets smaller than max_packet_size and/or adjust read position
  215. * after a seek. */
  216. static void pad_media_packet(MMSContext *mms)
  217. {
  218. if(mms->remaining_in_len<mms->asf_packet_len) {
  219. int padding_size = mms->asf_packet_len - mms->remaining_in_len;
  220. memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
  221. mms->remaining_in_len += padding_size;
  222. }
  223. }
  224. /** Read incoming MMST media, header or command packet. */
  225. static MMSSCPacketType get_tcp_server_response(MMSContext *mms)
  226. {
  227. int read_result;
  228. MMSSCPacketType packet_type= -1;
  229. for(;;) {
  230. if((read_result= url_read_complete(mms->mms_hd, mms->in_buffer, 8))==8) {
  231. // handle command packet.
  232. if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
  233. mms->incoming_flags= mms->in_buffer[3];
  234. read_result= url_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
  235. if(read_result == 4) {
  236. int length_remaining= AV_RL32(mms->in_buffer+8) + 4;
  237. int hr;
  238. dprintf(NULL, "Length remaining is %d\n", length_remaining);
  239. // read the rest of the packet.
  240. if (length_remaining < 0
  241. || length_remaining > sizeof(mms->in_buffer) - 12) {
  242. dprintf(NULL, "Incoming message len %d exceeds buffer len %d\n",
  243. length_remaining, sizeof(mms->in_buffer) - 12);
  244. return -1;
  245. }
  246. read_result = url_read_complete(mms->mms_hd, mms->in_buffer + 12,
  247. length_remaining) ;
  248. if (read_result == length_remaining) {
  249. packet_type= AV_RL16(mms->in_buffer+36);
  250. } else {
  251. dprintf(NULL, "read for packet type failed%d!\n", read_result);
  252. return -1;
  253. }
  254. hr = AV_RL32(mms->in_buffer + 40);
  255. if (hr) {
  256. dprintf(NULL, "The server side send back error code:0x%x\n", hr);
  257. return -1;
  258. }
  259. } else {
  260. dprintf(NULL, "read for length remaining failed%d!\n", read_result);
  261. return -1;
  262. }
  263. } else {
  264. int length_remaining;
  265. int packet_id_type;
  266. int tmp;
  267. assert(mms->remaining_in_len==0);
  268. // note we cache the first 8 bytes,
  269. // then fill up the buffer with the others
  270. tmp = AV_RL16(mms->in_buffer + 6);
  271. length_remaining = (tmp - 8) & 0xffff;
  272. mms->incoming_packet_seq = AV_RL32(mms->in_buffer);
  273. packet_id_type = mms->in_buffer[4];
  274. mms->incoming_flags = mms->in_buffer[5];
  275. if (length_remaining < 0
  276. || length_remaining > sizeof(mms->in_buffer) - 8) {
  277. dprintf(NULL, "Incoming data len %d exceeds buffer len %d\n",
  278. length_remaining, sizeof(mms->in_buffer));
  279. return -1;
  280. }
  281. mms->remaining_in_len = length_remaining;
  282. mms->read_in_ptr = mms->in_buffer;
  283. read_result= url_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
  284. if(read_result != length_remaining) {
  285. dprintf(NULL, "read_bytes result: %d asking for %d\n",
  286. read_result, length_remaining);
  287. return -1;
  288. } else {
  289. // if we successfully read everything.
  290. if(packet_id_type == mms->header_packet_id) {
  291. packet_type = SC_PKT_ASF_HEADER;
  292. // Store the asf header
  293. if(!mms->header_parsed) {
  294. void *p = av_realloc(mms->asf_header,
  295. mms->asf_header_size
  296. + mms->remaining_in_len);
  297. if (!p) {
  298. av_freep(&mms->asf_header);
  299. return AVERROR(ENOMEM);
  300. }
  301. mms->asf_header = p;
  302. memcpy(mms->asf_header + mms->asf_header_size,
  303. mms->read_in_ptr,
  304. mms->remaining_in_len);
  305. mms->asf_header_size += mms->remaining_in_len;
  306. }
  307. } else if(packet_id_type == mms->packet_id) {
  308. packet_type = SC_PKT_ASF_MEDIA;
  309. } else {
  310. dprintf(NULL, "packet id type %d is old.", packet_id_type);
  311. continue;
  312. }
  313. }
  314. }
  315. // preprocess some packet type
  316. if(packet_type == SC_PKT_KEEPALIVE) {
  317. send_keepalive_packet(mms);
  318. continue;
  319. } else if(packet_type == SC_PKT_STREAM_CHANGING) {
  320. handle_packet_stream_changing_type(mms);
  321. } else if(packet_type == SC_PKT_ASF_MEDIA) {
  322. pad_media_packet(mms);
  323. }
  324. return packet_type;
  325. } else {
  326. if(read_result<0) {
  327. dprintf(NULL, "Read error (or cancelled) returned %d!\n", read_result);
  328. packet_type = SC_PKT_CANCEL;
  329. } else {
  330. dprintf(NULL, "Read result of zero?!\n");
  331. packet_type = SC_PKT_NO_DATA;
  332. }
  333. return packet_type;
  334. }
  335. }
  336. }
  337. static int mms_safe_send_recv(MMSContext *mms,
  338. int (*send_fun)(MMSContext *mms),
  339. const MMSSCPacketType expect_type)
  340. {
  341. MMSSCPacketType type;
  342. if(send_fun) {
  343. int ret = send_fun(mms);
  344. if (ret < 0) {
  345. dprintf(NULL, "Send Packet error before expecting recv packet %d\n", expect_type);
  346. return ret;
  347. }
  348. }
  349. if ((type = get_tcp_server_response(mms)) != expect_type) {
  350. dprintf(NULL,"Unexpected packet type %d with type %d\n", type, expect_type);
  351. return -1;
  352. } else {
  353. return 0;
  354. }
  355. }
  356. static int send_media_header_request(MMSContext *mms)
  357. {
  358. start_command_packet(mms, CS_PKT_MEDIA_HEADER_REQUEST);
  359. insert_command_prefixes(mms, 1, 0);
  360. bytestream_put_le32(&mms->write_out_ptr, 0);
  361. bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
  362. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
  363. bytestream_put_le32(&mms->write_out_ptr, 0);
  364. bytestream_put_le32(&mms->write_out_ptr, 0);
  365. bytestream_put_le32(&mms->write_out_ptr, 0);
  366. // the media preroll value in milliseconds?
  367. bytestream_put_le32(&mms->write_out_ptr, 0);
  368. bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
  369. bytestream_put_le32(&mms->write_out_ptr, 2);
  370. bytestream_put_le32(&mms->write_out_ptr, 0);
  371. return send_command_packet(mms);
  372. }
  373. /** Send the initial handshake. */
  374. static int send_startup_packet(MMSContext *mms)
  375. {
  376. char data_string[256];
  377. // SubscriberName is defined in MS specification linked below.
  378. // The guid value can be any valid value.
  379. // http://download.microsoft.com/
  380. // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
  381. snprintf(data_string, sizeof(data_string),
  382. "NSPlayer/7.0.0.1956; {%s}; Host: %s",
  383. "7E667F5D-A661-495E-A512-F55686DDA178", mms->host);
  384. start_command_packet(mms, CS_PKT_INITIAL);
  385. insert_command_prefixes(mms, 0, 0x0004000b);
  386. bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
  387. mms_put_utf16(mms, data_string);
  388. return send_command_packet(mms);
  389. }
  390. static int asf_header_parser(MMSContext *mms)
  391. {
  392. uint8_t *p = mms->asf_header;
  393. uint8_t *end;
  394. int flags, stream_id, real_header_size;
  395. mms->stream_num = 0;
  396. if (mms->asf_header_size < sizeof(ff_asf_guid) * 2 + 22 ||
  397. memcmp(p, ff_asf_header, sizeof(ff_asf_guid)))
  398. return -1;
  399. real_header_size = AV_RL64(p + sizeof(ff_asf_guid));
  400. end = mms->asf_header + real_header_size;
  401. p += sizeof(ff_asf_guid) + 14;
  402. while(end - p >= sizeof(ff_asf_guid) + 8) {
  403. uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid));
  404. if (!chunksize || chunksize > end - p) {
  405. dprintf(NULL, "chunksize is exceptional value:%"PRId64"!\n", chunksize);
  406. return -1;
  407. }
  408. if (!memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) {
  409. /* read packet size */
  410. if (end - p > sizeof(ff_asf_guid) * 2 + 68) {
  411. mms->asf_packet_len = AV_RL32(p + sizeof(ff_asf_guid) * 2 + 64);
  412. if (mms->asf_packet_len <= 0 || mms->asf_packet_len > sizeof(mms->in_buffer)) {
  413. dprintf(NULL,"Too large packet len:%d"
  414. " may overwrite in_buffer when padding", mms->asf_packet_len);
  415. return -1;
  416. }
  417. }
  418. } else if (!memcmp(p, ff_asf_stream_header, sizeof(ff_asf_guid))) {
  419. flags = AV_RL16(p + sizeof(ff_asf_guid)*3 + 24);
  420. stream_id = flags & 0x7F;
  421. //The second condition is for checking CS_PKT_STREAM_ID_REQUEST packet size,
  422. //we can calcuate the packet size by stream_num.
  423. //Please see function send_stream_selection_request().
  424. if (mms->stream_num < MAX_STREAMS &&
  425. 46 + mms->stream_num * 6 < sizeof(mms->out_buffer)) {
  426. mms->streams[mms->stream_num].id = stream_id;
  427. mms->stream_num++;
  428. } else {
  429. dprintf(NULL, "Too many streams.\n");
  430. return -1;
  431. }
  432. } else if (!memcmp(p, ff_asf_head1_guid, sizeof(ff_asf_guid))) {
  433. chunksize = 46; // see references [2] section 3.4. This should be set 46.
  434. }
  435. p += chunksize;
  436. }
  437. return 0;
  438. }
  439. /** Send MMST stream selection command based on the AVStream->discard values. */
  440. static int send_stream_selection_request(MMSContext *mms)
  441. {
  442. int i;
  443. // send the streams we want back...
  444. start_command_packet(mms, CS_PKT_STREAM_ID_REQUEST);
  445. bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
  446. for(i= 0; i<mms->stream_num; i++) {
  447. bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
  448. bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
  449. bytestream_put_le16(&mms->write_out_ptr, 0); // selection
  450. }
  451. return send_command_packet(mms);
  452. }
  453. static int read_data(MMSContext *mms, uint8_t *buf, const int buf_size)
  454. {
  455. int read_size;
  456. read_size = FFMIN(buf_size, mms->remaining_in_len);
  457. memcpy(buf, mms->read_in_ptr, read_size);
  458. mms->remaining_in_len -= read_size;
  459. mms->read_in_ptr += read_size;
  460. return read_size;
  461. }
  462. /** Read at most one media packet (or a whole header). */
  463. static int read_mms_packet(MMSContext *mms, uint8_t *buf, int buf_size)
  464. {
  465. int result = 0, read_header_size = 0;
  466. int size_to_copy;
  467. do {
  468. if(read_header_size < mms->asf_header_size && !mms->is_playing) {
  469. /* Read from ASF header buffer */
  470. size_to_copy= FFMIN(buf_size,
  471. mms->asf_header_size - read_header_size);
  472. memcpy(buf, mms->asf_header + read_header_size, size_to_copy);
  473. read_header_size += size_to_copy;
  474. result += size_to_copy;
  475. dprintf(NULL, "Copied %d bytes from stored header. left: %d\n",
  476. size_to_copy, mms->asf_header_size - read_header_size);
  477. if (mms->asf_header_size == read_header_size) {
  478. av_freep(&mms->asf_header);
  479. mms->is_playing = 1;
  480. }
  481. } else if(mms->remaining_in_len) {
  482. /* Read remaining packet data to buffer.
  483. * the result can not be zero because remaining_in_len is positive.*/
  484. result = read_data(mms, buf, buf_size);
  485. } else {
  486. /* Read from network */
  487. int err = mms_safe_send_recv(mms, NULL, SC_PKT_ASF_MEDIA);
  488. if (err == 0) {
  489. if(mms->remaining_in_len>mms->asf_packet_len) {
  490. dprintf(NULL, "Incoming packet"
  491. "larger than the asf packet size stated (%d>%d)\n",
  492. mms->remaining_in_len, mms->asf_packet_len);
  493. result= AVERROR_IO;
  494. } else {
  495. // copy the data to the packet buffer.
  496. result = read_data(mms, buf, buf_size);
  497. if (result == 0) {
  498. dprintf(NULL, "read asf media paket size is zero!\n");
  499. break;
  500. }
  501. }
  502. } else {
  503. dprintf(NULL, "read packet error!\n");
  504. break;
  505. }
  506. }
  507. } while(!result); // only return one packet.
  508. return result;
  509. }
  510. static int send_close_packet(MMSContext *mms)
  511. {
  512. start_command_packet(mms, CS_PKT_STREAM_CLOSE);
  513. insert_command_prefixes(mms, 1, 1);
  514. return send_command_packet(mms);
  515. }
  516. /** Close the MMSH/MMST connection */
  517. static int mms_close(URLContext *h)
  518. {
  519. MMSContext *mms = (MMSContext *)h->priv_data;
  520. if(mms->mms_hd) {
  521. send_close_packet(mms);
  522. url_close(mms->mms_hd);
  523. }
  524. /* free all separately allocated pointers in mms */
  525. av_free(mms->asf_header);
  526. av_freep(&h->priv_data);
  527. return 0;
  528. }
  529. static int mms_open(URLContext *h, const char *uri, int flags)
  530. {
  531. MMSContext *mms;
  532. int port, err;
  533. char tcpname[256];
  534. h->is_streamed = 1;
  535. mms = h->priv_data = av_mallocz(sizeof(MMSContext));
  536. if (!h->priv_data)
  537. return AVERROR(ENOMEM);
  538. // only for MMS over TCP, so set proto = NULL
  539. av_url_split(NULL, 0, NULL, 0,
  540. mms->host, sizeof(mms->host), &port, mms->path,
  541. sizeof(mms->path), uri);
  542. if(port<0)
  543. port = 1755; // defaut mms protocol port
  544. // establish tcp connection.
  545. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mms->host, port, NULL);
  546. err = url_open(&mms->mms_hd, tcpname, URL_RDWR);
  547. if (err)
  548. goto fail;
  549. mms->packet_id = 3; // default, initial value.
  550. mms->header_packet_id = 2; // default, initial value.
  551. err = mms_safe_send_recv(mms, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
  552. if (err)
  553. goto fail;
  554. err = mms_safe_send_recv(mms, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
  555. if (err)
  556. goto fail;
  557. err = mms_safe_send_recv(mms, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
  558. if (err)
  559. goto fail;
  560. err = mms_safe_send_recv(mms, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
  561. if (err)
  562. goto fail;
  563. err = mms_safe_send_recv(mms, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
  564. if (err)
  565. goto fail;
  566. err = mms_safe_send_recv(mms, NULL, SC_PKT_ASF_HEADER);
  567. if (err)
  568. goto fail;
  569. if((mms->incoming_flags != 0X08) && (mms->incoming_flags != 0X0C))
  570. goto fail;
  571. err = asf_header_parser(mms);
  572. if (err) {
  573. dprintf(NULL, "asf header parsed failed!\n");
  574. goto fail;
  575. }
  576. mms->header_parsed = 1;
  577. if (!mms->asf_packet_len || !mms->stream_num)
  578. goto fail;
  579. dprintf(NULL, "Leaving open (success)\n");
  580. return 0;
  581. fail:
  582. mms_close(h);
  583. dprintf(NULL, "Leaving open (failure: %d)\n", err);
  584. return err;
  585. }
  586. static int send_media_packet_request(MMSContext *mms)
  587. {
  588. start_command_packet(mms, CS_PKT_START_FROM_PKT_ID);
  589. insert_command_prefixes(mms, 1, 0x0001FFFF);
  590. bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
  591. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
  592. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
  593. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  594. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  595. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  596. bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
  597. mms->packet_id++; // new packet_id
  598. bytestream_put_le32(&mms->write_out_ptr, mms->packet_id);
  599. return send_command_packet(mms);
  600. }
  601. static void clear_stream_buffers(MMSContext *mms)
  602. {
  603. mms->remaining_in_len = 0;
  604. mms->read_in_ptr = mms->in_buffer;
  605. }
  606. /** Read ASF data through the protocol. */
  607. static int mms_read(URLContext *h, uint8_t *buf, int size)
  608. {
  609. /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
  610. MMSContext *mms = h->priv_data;
  611. int result = 0;
  612. /* Since we read the header at open(), this shouldn't be possible */
  613. assert(mms->header_parsed);
  614. if (!mms->is_playing) {
  615. dprintf(NULL, "mms_read() before play().\n");
  616. clear_stream_buffers(mms);
  617. result = mms_safe_send_recv(mms, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
  618. if (result)
  619. return result;
  620. // send media packet request
  621. result = mms_safe_send_recv(mms, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
  622. if (result) {
  623. return result;
  624. }
  625. }
  626. return read_mms_packet(mms, buf, size);
  627. }
  628. URLProtocol mmst_protocol = {
  629. "mmst",
  630. mms_open,
  631. mms_read,
  632. NULL, // write
  633. NULL, // seek
  634. mms_close,
  635. };