| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | /*
 | 
					
						
							|  |  |  |  |  * MMS protocol over TCP | 
					
						
							|  |  |  |  |  * Copyright (c) 2006,2007 Ryan Martell | 
					
						
							|  |  |  |  |  * Copyright (c) 2007 Bj<EFBFBD>rn Axelsson | 
					
						
							|  |  |  |  |  * Copyright (c) 2010 Zhentan Feng <spyfeng at gmail dot com> | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							|  |  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-07-20 15:11:44 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | /* References
 | 
					
						
							|  |  |  |  |  * MMS protocol specification: | 
					
						
							|  |  |  |  |  *  [1]http://msdn.microsoft.com/en-us/library/cc234711(PROT.10).aspx
 | 
					
						
							|  |  |  |  |  * ASF specification. Revision 01.20.03. | 
					
						
							|  |  |  |  |  *  [2]http://msdn.microsoft.com/en-us/library/bb643323.aspx
 | 
					
						
							|  |  |  |  |  */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | #include "avformat.h"
 | 
					
						
							|  |  |  |  | #include "internal.h"
 | 
					
						
							|  |  |  |  | #include "libavutil/intreadwrite.h"
 | 
					
						
							|  |  |  |  | #include "libavcodec/bytestream.h"
 | 
					
						
							|  |  |  |  | #include "network.h"
 | 
					
						
							|  |  |  |  | #include "asf.h"
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #define LOCAL_ADDRESS 0xc0a80081    // FIXME get and use correct local ip address.
 | 
					
						
							|  |  |  |  | #define LOCAL_PORT    1037          // as above.
 | 
					
						
							|  |  |  |  | /** Client to server packet types. */ | 
					
						
							|  |  |  |  | typedef enum { | 
					
						
							|  |  |  |  |     CS_PKT_INITIAL                  = 0x01, | 
					
						
							|  |  |  |  |     CS_PKT_PROTOCOL_SELECT          = 0x02, | 
					
						
							|  |  |  |  |     CS_PKT_MEDIA_FILE_REQUEST       = 0x05, | 
					
						
							|  |  |  |  |     CS_PKT_START_FROM_PKT_ID        = 0x07, | 
					
						
							|  |  |  |  |     CS_PKT_STREAM_PAUSE             = 0x09, | 
					
						
							|  |  |  |  |     CS_PKT_STREAM_CLOSE             = 0x0d, | 
					
						
							|  |  |  |  |     CS_PKT_MEDIA_HEADER_REQUEST     = 0x15, | 
					
						
							|  |  |  |  |     CS_PKT_TIMING_DATA_REQUEST      = 0x18, | 
					
						
							|  |  |  |  |     CS_PKT_USER_PASSWORD            = 0x1a, | 
					
						
							|  |  |  |  |     CS_PKT_KEEPALIVE                = 0x1b, | 
					
						
							|  |  |  |  |     CS_PKT_STREAM_ID_REQUEST        = 0x33, | 
					
						
							|  |  |  |  | } MMSCSPacketType; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Server to client packet types. */ | 
					
						
							|  |  |  |  | typedef enum { | 
					
						
							|  |  |  |  |     /** Control packets. */ | 
					
						
							|  |  |  |  |     /*@{*/ | 
					
						
							|  |  |  |  |     SC_PKT_CLIENT_ACCEPTED          = 0x01, | 
					
						
							|  |  |  |  |     SC_PKT_PROTOCOL_ACCEPTED        = 0x02, | 
					
						
							|  |  |  |  |     SC_PKT_PROTOCOL_FAILED          = 0x03, | 
					
						
							|  |  |  |  |     SC_PKT_MEDIA_PKT_FOLLOWS        = 0x05, | 
					
						
							|  |  |  |  |     SC_PKT_MEDIA_FILE_DETAILS       = 0x06, | 
					
						
							|  |  |  |  |     SC_PKT_HEADER_REQUEST_ACCEPTED  = 0x11, | 
					
						
							|  |  |  |  |     SC_PKT_TIMING_TEST_REPLY        = 0x15, | 
					
						
							|  |  |  |  |     SC_PKT_PASSWORD_REQUIRED        = 0x1a, | 
					
						
							|  |  |  |  |     SC_PKT_KEEPALIVE                = 0x1b, | 
					
						
							|  |  |  |  |     SC_PKT_STREAM_STOPPED           = 0x1e, | 
					
						
							|  |  |  |  |     SC_PKT_STREAM_CHANGING          = 0x20, | 
					
						
							|  |  |  |  |     SC_PKT_STREAM_ID_ACCEPTED       = 0x21, | 
					
						
							|  |  |  |  |     /*@}*/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     /** Pseudo packets. */ | 
					
						
							|  |  |  |  |     /*@{*/ | 
					
						
							|  |  |  |  |     SC_PKT_CANCEL                   = -1, | 
					
						
							|  |  |  |  |     SC_PKT_NO_DATA                  = -2, | 
					
						
							|  |  |  |  |     /*@}*/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     /** Data packets. */ | 
					
						
							|  |  |  |  |     /*@{*/ | 
					
						
							|  |  |  |  |     SC_PKT_ASF_HEADER               = 0x010000,// make it bigger than 0xFF in case of
 | 
					
						
							|  |  |  |  |     SC_PKT_ASF_MEDIA                = 0x010001,// receiving false data packets.
 | 
					
						
							|  |  |  |  |     /*@}*/ | 
					
						
							|  |  |  |  | } MMSSCPacketType; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct { | 
					
						
							|  |  |  |  |     int id; | 
					
						
							|  |  |  |  | }MMSStream; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct { | 
					
						
							|  |  |  |  |     URLContext *mms_hd;                  ///< TCP connection handle
 | 
					
						
							|  |  |  |  |     MMSStream streams[MAX_STREAMS]; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     /** Buffer for outgoing packets. */ | 
					
						
							|  |  |  |  |     /*@{*/ | 
					
						
							|  |  |  |  |     uint8_t *write_out_ptr;              ///< Pointer for writting the buffer.
 | 
					
						
							|  |  |  |  |     uint8_t out_buffer[512];             ///< Buffer for outgoing packet.
 | 
					
						
							|  |  |  |  |     /*@}*/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     /** Buffer for incoming packets. */ | 
					
						
							|  |  |  |  |     /*@{*/ | 
					
						
							|  |  |  |  |     uint8_t in_buffer[8192];             ///< Buffer for incoming packets.
 | 
					
						
							|  |  |  |  |     uint8_t *read_in_ptr;                ///< Pointer for reading from incoming buffer.
 | 
					
						
							|  |  |  |  |     int remaining_in_len;                ///< Reading length from incoming buffer.
 | 
					
						
							|  |  |  |  |     /*@}*/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     /** Internal handling of the ASF header */ | 
					
						
							|  |  |  |  |     /*@{*/ | 
					
						
							|  |  |  |  |     uint8_t *asf_header;                 ///< Stored ASF header.
 | 
					
						
							|  |  |  |  |     int asf_header_size;                 ///< Size of stored ASF header.
 | 
					
						
							|  |  |  |  |     int header_parsed;                   ///< The header has been received and parsed.
 | 
					
						
							|  |  |  |  |     int asf_packet_len; | 
					
						
							| 
									
										
										
										
											2010-07-20 15:14:15 +00:00
										 |  |  |  |     int asf_header_read_size; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     /*@}*/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     int stream_num;                      ///< stream numbers.
 | 
					
						
							|  |  |  |  | } MMSContext; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | typedef struct { | 
					
						
							|  |  |  |  |     MMSContext  mms; | 
					
						
							|  |  |  |  |     int outgoing_packet_seq;             ///< Outgoing packet sequence number.
 | 
					
						
							|  |  |  |  |     char path[256];                      ///< Path of the resource being asked for.
 | 
					
						
							|  |  |  |  |     char host[128];                      ///< Host of the resources.
 | 
					
						
							|  |  |  |  |     int incoming_packet_seq;             ///< Incoming packet sequence number.
 | 
					
						
							|  |  |  |  |     int incoming_flags;                  ///< Incoming packet flags.
 | 
					
						
							|  |  |  |  |     int packet_id;                       ///< Identifier for packets in the current stream.
 | 
					
						
							|  |  |  |  |     unsigned int header_packet_id;       ///< default is 2.
 | 
					
						
							|  |  |  |  | } MMSTContext; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | /** Create MMST command packet header */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static void start_command_packet(MMSTContext *mmst, MMSCSPacketType packet_type) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms    = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     mms->write_out_ptr = mms->out_buffer; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0xb00bface); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' ')); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, mmst->outgoing_packet_seq++); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le16(&mms->write_out_ptr, packet_type); | 
					
						
							|  |  |  |  |     bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
 | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Add prefixes to MMST command packet. */ | 
					
						
							|  |  |  |  | static void insert_command_prefixes(MMSContext *mms, | 
					
						
							|  |  |  |  |         uint32_t prefix1, uint32_t prefix2) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
 | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Send a prepared MMST command packet. */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_command_packet(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms  = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-07-20 15:07:31 +00:00
										 |  |  |  |     int len= mms->write_out_ptr - mms->out_buffer; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:27:29 +00:00
										 |  |  |  |     int exact_length = FFALIGN(len, 8); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     int first_length= exact_length - 16; | 
					
						
							|  |  |  |  |     int len8= first_length/8; | 
					
						
							|  |  |  |  |     int write_result; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // update packet length fields.
 | 
					
						
							|  |  |  |  |     AV_WL32(mms->out_buffer + 8, first_length); | 
					
						
							|  |  |  |  |     AV_WL32(mms->out_buffer + 16, len8); | 
					
						
							|  |  |  |  |     AV_WL32(mms->out_buffer + 32, len8-2); | 
					
						
							| 
									
										
										
										
											2010-07-20 15:07:31 +00:00
										 |  |  |  |     memset(mms->write_out_ptr, 0, exact_length - len); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     // write it out.
 | 
					
						
							|  |  |  |  |     write_result= url_write(mms->mms_hd, mms->out_buffer, exact_length); | 
					
						
							|  |  |  |  |     if(write_result != exact_length) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:21:14 +00:00
										 |  |  |  |         av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                "Failed to write data of length %d: %d (%s)\n", | 
					
						
							|  |  |  |  |                exact_length, write_result, | 
					
						
							|  |  |  |  |                write_result < 0 ? strerror(write_result) : | 
					
						
							|  |  |  |  |                    "The server closed the connection"); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |         return AVERROR_IO; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     return 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void mms_put_utf16(MMSContext *mms, uint8_t *src) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     ByteIOContext bic; | 
					
						
							|  |  |  |  |     int size = mms->write_out_ptr - mms->out_buffer; | 
					
						
							|  |  |  |  |     int len; | 
					
						
							|  |  |  |  |     init_put_byte(&bic, mms->write_out_ptr, | 
					
						
							|  |  |  |  |             sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     len = ff_put_str16_nolen(&bic, src); | 
					
						
							|  |  |  |  |     mms->write_out_ptr += len; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_time_test_data(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-07-20 14:59:23 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     start_command_packet(mmst, CS_PKT_TIMING_DATA_REQUEST); | 
					
						
							|  |  |  |  |     insert_command_prefixes(&mmst->mms, 0xf0f0f0f1, 0x0004000b); | 
					
						
							|  |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-07-20 14:59:23 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_protocol_select(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     char data_string[256]; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     start_command_packet(mmst, CS_PKT_PROTOCOL_SELECT); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     insert_command_prefixes(mms, 0, 0xffffffff); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0);          // maxFunnelBytes
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 2);          // funnelMode
 | 
					
						
							|  |  |  |  |     snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d", | 
					
						
							|  |  |  |  |             (LOCAL_ADDRESS>>24)&0xff, | 
					
						
							|  |  |  |  |             (LOCAL_ADDRESS>>16)&0xff, | 
					
						
							|  |  |  |  |             (LOCAL_ADDRESS>>8)&0xff, | 
					
						
							|  |  |  |  |             LOCAL_ADDRESS&0xff, | 
					
						
							|  |  |  |  |             "TCP",                                        // or UDP
 | 
					
						
							|  |  |  |  |             LOCAL_PORT); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     mms_put_utf16(mms, data_string); | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_media_file_request(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							|  |  |  |  |     start_command_packet(mmst, CS_PKT_MEDIA_FILE_REQUEST); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     insert_command_prefixes(mms, 1, 0xffffffff); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     mms_put_utf16(mms, mmst->path + 1); // +1 for skip "/"
 | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static void handle_packet_stream_changing_type(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     dprintf(NULL, "Stream changing!\n"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 40 is the packet header size, 7 is the prefix size.
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     mmst->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7); | 
					
						
							|  |  |  |  |     dprintf(NULL, "Changed header prefix to 0x%x", mmst->header_packet_id); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_keepalive_packet(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     // respond to a keepalive with a keepalive...
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     start_command_packet(mmst, CS_PKT_KEEPALIVE); | 
					
						
							|  |  |  |  |     insert_command_prefixes(&mmst->mms, 1, 0x100FFFF); | 
					
						
							|  |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Pad media packets smaller than max_packet_size and/or adjust read position
 | 
					
						
							|  |  |  |  |   * after a seek. */ | 
					
						
							|  |  |  |  | static void pad_media_packet(MMSContext *mms) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     if(mms->remaining_in_len<mms->asf_packet_len) { | 
					
						
							|  |  |  |  |         int padding_size = mms->asf_packet_len - mms->remaining_in_len; | 
					
						
							|  |  |  |  |         memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size); | 
					
						
							|  |  |  |  |         mms->remaining_in_len += padding_size; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Read incoming MMST media, header or command packet. */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     int read_result; | 
					
						
							|  |  |  |  |     MMSSCPacketType packet_type= -1; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     for(;;) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:20 +00:00
										 |  |  |  |         read_result = url_read_complete(mms->mms_hd, mms->in_buffer, 8); | 
					
						
							|  |  |  |  |         if (read_result != 8) { | 
					
						
							|  |  |  |  |             if(read_result < 0) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Error reading packet header: %d (%s)\n", | 
					
						
							|  |  |  |  |                        read_result, strerror(read_result)); | 
					
						
							|  |  |  |  |                 packet_type = SC_PKT_CANCEL; | 
					
						
							|  |  |  |  |             } else { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "The server closed the connection\n"); | 
					
						
							|  |  |  |  |                 packet_type = SC_PKT_NO_DATA; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |             return packet_type; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |         // handle command packet.
 | 
					
						
							|  |  |  |  |         if(AV_RL32(mms->in_buffer + 4)==0xb00bface) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:20 +00:00
										 |  |  |  |             int length_remaining, hr; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             mmst->incoming_flags= mms->in_buffer[3]; | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |             read_result= url_read_complete(mms->mms_hd, mms->in_buffer+8, 4); | 
					
						
							|  |  |  |  |             if(read_result != 4) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Reading command packet length failed: %d (%s)\n", | 
					
						
							|  |  |  |  |                        read_result, | 
					
						
							|  |  |  |  |                        read_result < 0 ? strerror(read_result) : | 
					
						
							|  |  |  |  |                            "The server closed the connection"); | 
					
						
							|  |  |  |  |                 return read_result < 0 ? read_result : AVERROR_IO; | 
					
						
							|  |  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:20 +00:00
										 |  |  |  |             length_remaining= AV_RL32(mms->in_buffer+8) + 4; | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |             dprintf(NULL, "Length remaining is %d\n", length_remaining); | 
					
						
							|  |  |  |  |             // read the rest of the packet.
 | 
					
						
							|  |  |  |  |             if (length_remaining < 0 | 
					
						
							|  |  |  |  |                 || length_remaining > sizeof(mms->in_buffer) - 12) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Incoming packet length %d exceeds bufsize %zu\n", | 
					
						
							|  |  |  |  |                        length_remaining, sizeof(mms->in_buffer) - 12); | 
					
						
							|  |  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |             read_result = url_read_complete(mms->mms_hd, mms->in_buffer + 12, | 
					
						
							|  |  |  |  |                                             length_remaining) ; | 
					
						
							|  |  |  |  |             if (read_result != length_remaining) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Reading pkt data (length=%d) failed: %d (%s)\n", | 
					
						
							|  |  |  |  |                        length_remaining, read_result, | 
					
						
							|  |  |  |  |                        read_result < 0 ? strerror(read_result) : | 
					
						
							|  |  |  |  |                            "The server closed the connection"); | 
					
						
							|  |  |  |  |                 return read_result < 0 ? read_result : AVERROR_IO; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |             packet_type= AV_RL16(mms->in_buffer+36); | 
					
						
							|  |  |  |  |             hr = AV_RL32(mms->in_buffer + 40); | 
					
						
							|  |  |  |  |             if (hr) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Server sent an error status code: 0x%08x\n", hr); | 
					
						
							|  |  |  |  |                 return AVERROR_UNKNOWN; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |         } else { | 
					
						
							|  |  |  |  |             int length_remaining; | 
					
						
							|  |  |  |  |             int packet_id_type; | 
					
						
							|  |  |  |  |             int tmp; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             // note we cache the first 8 bytes,
 | 
					
						
							|  |  |  |  |             // then fill up the buffer with the others
 | 
					
						
							|  |  |  |  |             tmp                       = AV_RL16(mms->in_buffer + 6); | 
					
						
							|  |  |  |  |             length_remaining          = (tmp - 8) & 0xffff; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             mmst->incoming_packet_seq = AV_RL32(mms->in_buffer); | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |             packet_id_type            = mms->in_buffer[4]; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             mmst->incoming_flags      = mms->in_buffer[5]; | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |             if (length_remaining < 0 | 
					
						
							|  |  |  |  |                 || length_remaining > sizeof(mms->in_buffer) - 8) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Data length %d is invalid or too large (max=%zu)\n", | 
					
						
							|  |  |  |  |                        length_remaining, sizeof(mms->in_buffer)); | 
					
						
							|  |  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |             mms->remaining_in_len    = length_remaining; | 
					
						
							|  |  |  |  |             mms->read_in_ptr         = mms->in_buffer; | 
					
						
							|  |  |  |  |             read_result= url_read_complete(mms->mms_hd, mms->in_buffer, length_remaining); | 
					
						
							|  |  |  |  |             if(read_result != length_remaining) { | 
					
						
							|  |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Failed to read packet data of size %d: %d (%s)\n", | 
					
						
							|  |  |  |  |                        length_remaining, read_result, | 
					
						
							|  |  |  |  |                        read_result < 0 ? strerror(read_result) : | 
					
						
							|  |  |  |  |                            "The server closed the connection"); | 
					
						
							|  |  |  |  |                 return read_result < 0 ? read_result : AVERROR_IO; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |             } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |             // if we successfully read everything.
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             if(packet_id_type == mmst->header_packet_id) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |                 packet_type = SC_PKT_ASF_HEADER; | 
					
						
							|  |  |  |  |                 // Store the asf header
 | 
					
						
							|  |  |  |  |                 if(!mms->header_parsed) { | 
					
						
							|  |  |  |  |                     void *p = av_realloc(mms->asf_header, | 
					
						
							|  |  |  |  |                                   mms->asf_header_size + mms->remaining_in_len); | 
					
						
							|  |  |  |  |                     if (!p) { | 
					
						
							|  |  |  |  |                         av_freep(&mms->asf_header); | 
					
						
							|  |  |  |  |                         return AVERROR(ENOMEM); | 
					
						
							|  |  |  |  |                     } | 
					
						
							|  |  |  |  |                     mms->asf_header = p; | 
					
						
							|  |  |  |  |                     memcpy(mms->asf_header + mms->asf_header_size, | 
					
						
							|  |  |  |  |                            mms->read_in_ptr, mms->remaining_in_len); | 
					
						
							|  |  |  |  |                     mms->asf_header_size += mms->remaining_in_len; | 
					
						
							|  |  |  |  |                 } | 
					
						
							|  |  |  |  |                 // 0x04 means asf header is sent in multiple packets.
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |                 if (mmst->incoming_flags == 0x04) | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |                     continue; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             } else if(packet_id_type == mmst->packet_id) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |                 packet_type = SC_PKT_ASF_MEDIA; | 
					
						
							|  |  |  |  |             } else { | 
					
						
							|  |  |  |  |                 dprintf(NULL, "packet id type %d is old.", packet_id_type); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |                 continue; | 
					
						
							|  |  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         // preprocess some packet type
 | 
					
						
							|  |  |  |  |         if(packet_type == SC_PKT_KEEPALIVE) { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             send_keepalive_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |             continue; | 
					
						
							|  |  |  |  |         } else if(packet_type == SC_PKT_STREAM_CHANGING) { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             handle_packet_stream_changing_type(mmst); | 
					
						
							| 
									
										
										
										
											2010-07-26 22:22:42 +00:00
										 |  |  |  |         } else if(packet_type == SC_PKT_ASF_MEDIA) { | 
					
						
							|  |  |  |  |             pad_media_packet(mms); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |         return packet_type; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int mms_safe_send_recv(MMSTContext *mmst, | 
					
						
							|  |  |  |  |                               int (*send_fun)(MMSTContext *mmst), | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |                               const MMSSCPacketType expect_type) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     MMSSCPacketType type; | 
					
						
							|  |  |  |  |     if(send_fun) { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |         int ret = send_fun(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |  |             dprintf(NULL, "Send Packet error before expecting recv packet %d\n", expect_type); | 
					
						
							|  |  |  |  |             return ret; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     if ((type = get_tcp_server_response(mmst)) != expect_type) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:21:14 +00:00
										 |  |  |  |         av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                "Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n", | 
					
						
							|  |  |  |  |                type, expect_type); | 
					
						
							|  |  |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     } else { | 
					
						
							|  |  |  |  |         return 0; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_media_header_request(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							|  |  |  |  |     start_command_packet(mmst, CS_PKT_MEDIA_HEADER_REQUEST); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     insert_command_prefixes(mms, 1, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0x00800000); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // the media preroll value in milliseconds?
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 2); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Send the initial handshake. */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_startup_packet(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     char data_string[256]; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     // SubscriberName is defined in MS specification linked below.
 | 
					
						
							|  |  |  |  |     // The guid value can be any valid value.
 | 
					
						
							|  |  |  |  |     // http://download.microsoft.com/
 | 
					
						
							|  |  |  |  |     // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
 | 
					
						
							|  |  |  |  |     snprintf(data_string, sizeof(data_string), | 
					
						
							|  |  |  |  |             "NSPlayer/7.0.0.1956; {%s}; Host: %s", | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             "7E667F5D-A661-495E-A512-F55686DDA178", mmst->host); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     start_command_packet(mmst, CS_PKT_INITIAL); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     insert_command_prefixes(mms, 0, 0x0004000b); | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0x0003001c); | 
					
						
							|  |  |  |  |     mms_put_utf16(mms, data_string); | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int asf_header_parser(MMSContext *mms) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     uint8_t *p = mms->asf_header; | 
					
						
							|  |  |  |  |     uint8_t *end; | 
					
						
							| 
									
										
										
										
											2010-07-20 15:14:15 +00:00
										 |  |  |  |     int flags, stream_id; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     mms->stream_num = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     if (mms->asf_header_size < sizeof(ff_asf_guid) * 2 + 22 || | 
					
						
							| 
									
										
										
										
											2010-07-26 22:21:14 +00:00
										 |  |  |  |         memcmp(p, ff_asf_header, sizeof(ff_asf_guid))) { | 
					
						
							|  |  |  |  |         av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                "Corrupt stream (invalid ASF header, size=%d)\n", | 
					
						
							|  |  |  |  |                mms->asf_header_size); | 
					
						
							|  |  |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-20 15:14:15 +00:00
										 |  |  |  |     end = mms->asf_header + mms->asf_header_size; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     p += sizeof(ff_asf_guid) + 14; | 
					
						
							|  |  |  |  |     while(end - p >= sizeof(ff_asf_guid) + 8) { | 
					
						
							|  |  |  |  |         uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid)); | 
					
						
							|  |  |  |  |         if (!chunksize || chunksize > end - p) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:21:14 +00:00
										 |  |  |  |             av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                    "Corrupt stream (header chunksize %"PRId64" is invalid)\n", | 
					
						
							|  |  |  |  |                    chunksize); | 
					
						
							|  |  |  |  |             return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  |         if (!memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) { | 
					
						
							|  |  |  |  |             /* read packet size */ | 
					
						
							|  |  |  |  |             if (end - p > sizeof(ff_asf_guid) * 2 + 68) { | 
					
						
							|  |  |  |  |                 mms->asf_packet_len = AV_RL32(p + sizeof(ff_asf_guid) * 2 + 64); | 
					
						
							|  |  |  |  |                 if (mms->asf_packet_len <= 0 || mms->asf_packet_len > sizeof(mms->in_buffer)) { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:21:14 +00:00
										 |  |  |  |                     av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                            "Corrupt stream (too large pkt_len %d)\n", | 
					
						
							|  |  |  |  |                            mms->asf_packet_len); | 
					
						
							|  |  |  |  |                     return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |                 } | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |         } else if (!memcmp(p, ff_asf_stream_header, sizeof(ff_asf_guid))) { | 
					
						
							|  |  |  |  |             flags     = AV_RL16(p + sizeof(ff_asf_guid)*3 + 24); | 
					
						
							|  |  |  |  |             stream_id = flags & 0x7F; | 
					
						
							|  |  |  |  |             //The second condition is for checking CS_PKT_STREAM_ID_REQUEST packet size,
 | 
					
						
							|  |  |  |  |             //we can calcuate the packet size by stream_num.
 | 
					
						
							|  |  |  |  |             //Please see function send_stream_selection_request().
 | 
					
						
							|  |  |  |  |             if (mms->stream_num < MAX_STREAMS && | 
					
						
							|  |  |  |  |                     46 + mms->stream_num * 6 < sizeof(mms->out_buffer)) { | 
					
						
							|  |  |  |  |                 mms->streams[mms->stream_num].id = stream_id; | 
					
						
							|  |  |  |  |                 mms->stream_num++; | 
					
						
							|  |  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2010-07-26 22:21:14 +00:00
										 |  |  |  |                 av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                        "Corrupt stream (too many A/V streams)\n"); | 
					
						
							|  |  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-07-20 15:11:44 +00:00
										 |  |  |  |         } else if (!memcmp(p, ff_asf_head1_guid, sizeof(ff_asf_guid))) { | 
					
						
							|  |  |  |  |             chunksize = 46; // see references [2] section 3.4. This should be set 46.
 | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  |         p += chunksize; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     return 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Send MMST stream selection command based on the AVStream->discard values. */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_stream_selection_request(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     //  send the streams we want back...
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     start_command_packet(mmst, CS_PKT_STREAM_ID_REQUEST); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, mms->stream_num);         // stream nums
 | 
					
						
							|  |  |  |  |     for(i= 0; i<mms->stream_num; i++) { | 
					
						
							|  |  |  |  |         bytestream_put_le16(&mms->write_out_ptr, 0xffff);              // flags
 | 
					
						
							|  |  |  |  |         bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id);  // stream id
 | 
					
						
							|  |  |  |  |         bytestream_put_le16(&mms->write_out_ptr, 0);                   // selection
 | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int read_data(MMSContext *mms, uint8_t *buf, const int buf_size) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     int read_size; | 
					
						
							|  |  |  |  |     read_size = FFMIN(buf_size, mms->remaining_in_len); | 
					
						
							|  |  |  |  |     memcpy(buf, mms->read_in_ptr, read_size); | 
					
						
							|  |  |  |  |     mms->remaining_in_len -= read_size; | 
					
						
							|  |  |  |  |     mms->read_in_ptr      += read_size; | 
					
						
							|  |  |  |  |     return read_size; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_close_packet(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     start_command_packet(mmst, CS_PKT_STREAM_CLOSE); | 
					
						
							|  |  |  |  |     insert_command_prefixes(&mmst->mms, 1, 1); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Close the MMSH/MMST connection */ | 
					
						
							|  |  |  |  | static int mms_close(URLContext *h) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSTContext *mmst = (MMSTContext *)h->priv_data; | 
					
						
							|  |  |  |  |     MMSContext *mms   = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if(mms->mms_hd) { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |         send_close_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |         url_close(mms->mms_hd); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     /* free all separately allocated pointers in mms */ | 
					
						
							|  |  |  |  |     av_free(mms->asf_header); | 
					
						
							|  |  |  |  |     av_freep(&h->priv_data); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     return 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  | static int send_media_packet_request(MMSTContext *mmst) | 
					
						
							| 
									
										
										
										
											2010-08-04 22:32:43 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSContext *mms = &mmst->mms; | 
					
						
							|  |  |  |  |     start_command_packet(mmst, CS_PKT_START_FROM_PKT_ID); | 
					
						
							| 
									
										
										
										
											2010-08-04 22:32:43 +00:00
										 |  |  |  |     insert_command_prefixes(mms, 1, 0x0001FFFF); | 
					
						
							|  |  |  |  |     bytestream_put_le64(&mms->write_out_ptr, 0);          // seek timestamp
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
 | 
					
						
							|  |  |  |  |     bytestream_put_byte(&mms->write_out_ptr, 0xff);       // max stream time limit
 | 
					
						
							|  |  |  |  |     bytestream_put_byte(&mms->write_out_ptr, 0xff);       // max stream time limit
 | 
					
						
							|  |  |  |  |     bytestream_put_byte(&mms->write_out_ptr, 0xff);       // max stream time limit
 | 
					
						
							|  |  |  |  |     bytestream_put_byte(&mms->write_out_ptr, 0x00);       // stream time limit flag
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     mmst->packet_id++;                                     // new packet_id
 | 
					
						
							|  |  |  |  |     bytestream_put_le32(&mms->write_out_ptr, mmst->packet_id); | 
					
						
							|  |  |  |  |     return send_command_packet(mmst); | 
					
						
							| 
									
										
										
										
											2010-08-04 22:32:43 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void clear_stream_buffers(MMSContext *mms) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     mms->remaining_in_len = 0; | 
					
						
							|  |  |  |  |     mms->read_in_ptr      = mms->in_buffer; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | static int mms_open(URLContext *h, const char *uri, int flags) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSTContext *mmst; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     MMSContext *mms; | 
					
						
							|  |  |  |  |     int port, err; | 
					
						
							|  |  |  |  |     char tcpname[256]; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     h->is_streamed = 1; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     mmst = h->priv_data = av_mallocz(sizeof(MMSTContext)); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if (!h->priv_data) | 
					
						
							|  |  |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     mms = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     // only for MMS over TCP, so set proto = NULL
 | 
					
						
							| 
									
										
										
										
											2010-06-27 14:16:46 +00:00
										 |  |  |  |     av_url_split(NULL, 0, NULL, 0, | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             mmst->host, sizeof(mmst->host), &port, mmst->path, | 
					
						
							|  |  |  |  |             sizeof(mmst->path), uri); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     if(port<0) | 
					
						
							|  |  |  |  |         port = 1755; // defaut mms protocol port
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // establish tcp connection.
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     err = url_open(&mms->mms_hd, tcpname, URL_RDWR); | 
					
						
							|  |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     mmst->packet_id        = 3;          // default, initial value.
 | 
					
						
							|  |  |  |  |     mmst->header_packet_id = 2;          // default, initial value.
 | 
					
						
							|  |  |  |  |     err = mms_safe_send_recv(mmst, send_startup_packet, SC_PKT_CLIENT_ACCEPTED); | 
					
						
							| 
									
										
										
										
											2010-07-20 14:59:23 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, send_time_test_data, SC_PKT_TIMING_TEST_REPLY); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_HEADER); | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     if((mmst->incoming_flags != 0X08) && (mmst->incoming_flags != 0X0C)) | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |         goto fail; | 
					
						
							|  |  |  |  |     err = asf_header_parser(mms); | 
					
						
							|  |  |  |  |     if (err) { | 
					
						
							|  |  |  |  |         dprintf(NULL, "asf header parsed failed!\n"); | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |     mms->header_parsed = 1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     if (!mms->asf_packet_len || !mms->stream_num) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-04 22:33:38 +00:00
										 |  |  |  |     clear_stream_buffers(mms); | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED); | 
					
						
							| 
									
										
										
										
											2010-08-04 22:33:38 +00:00
										 |  |  |  |     if (err) | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							|  |  |  |  |     // send media packet request
 | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     err = mms_safe_send_recv(mmst, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS); | 
					
						
							| 
									
										
										
										
											2010-08-04 22:33:38 +00:00
										 |  |  |  |     if (err) { | 
					
						
							|  |  |  |  |         goto fail; | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  |     dprintf(NULL, "Leaving open (success)\n"); | 
					
						
							|  |  |  |  |     return 0; | 
					
						
							|  |  |  |  | fail: | 
					
						
							|  |  |  |  |     mms_close(h); | 
					
						
							|  |  |  |  |     dprintf(NULL, "Leaving open (failure: %d)\n", err); | 
					
						
							|  |  |  |  |     return err; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /** Read ASF data through the protocol. */ | 
					
						
							|  |  |  |  | static int mms_read(URLContext *h, uint8_t *buf, int size) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |     MMSTContext *mmst = h->priv_data; | 
					
						
							|  |  |  |  |     MMSContext *mms   = &mmst->mms; | 
					
						
							| 
									
										
										
										
											2010-08-04 22:34:43 +00:00
										 |  |  |  |     int result = 0; | 
					
						
							|  |  |  |  |     int size_to_copy; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-04 22:34:43 +00:00
										 |  |  |  |     do { | 
					
						
							|  |  |  |  |         if(mms->asf_header_read_size < mms->asf_header_size) { | 
					
						
							|  |  |  |  |             /* Read from ASF header buffer */ | 
					
						
							|  |  |  |  |             size_to_copy= FFMIN(size, | 
					
						
							|  |  |  |  |                                 mms->asf_header_size - mms->asf_header_read_size); | 
					
						
							|  |  |  |  |             memcpy(buf, mms->asf_header + mms->asf_header_read_size, size_to_copy); | 
					
						
							|  |  |  |  |             mms->asf_header_read_size += size_to_copy; | 
					
						
							|  |  |  |  |             result += size_to_copy; | 
					
						
							|  |  |  |  |             dprintf(NULL, "Copied %d bytes from stored header. left: %d\n", | 
					
						
							|  |  |  |  |                    size_to_copy, mms->asf_header_size - mms->asf_header_read_size); | 
					
						
							|  |  |  |  |             if (mms->asf_header_size == mms->asf_header_read_size) { | 
					
						
							|  |  |  |  |                 av_freep(&mms->asf_header); | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |         } else if(mms->remaining_in_len) { | 
					
						
							|  |  |  |  |             /* Read remaining packet data to buffer.
 | 
					
						
							|  |  |  |  |              * the result can not be zero because remaining_in_len is positive.*/ | 
					
						
							|  |  |  |  |             result = read_data(mms, buf, size); | 
					
						
							|  |  |  |  |         } else { | 
					
						
							|  |  |  |  |             /* Read from network */ | 
					
						
							| 
									
										
										
										
											2010-08-11 22:43:54 +00:00
										 |  |  |  |             int err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_MEDIA); | 
					
						
							| 
									
										
										
										
											2010-08-04 22:34:43 +00:00
										 |  |  |  |             if (err == 0) { | 
					
						
							|  |  |  |  |                 if(mms->remaining_in_len>mms->asf_packet_len) { | 
					
						
							|  |  |  |  |                     av_log(NULL, AV_LOG_ERROR, | 
					
						
							|  |  |  |  |                            "Incoming pktlen %d is larger than ASF pktsize %d\n", | 
					
						
							|  |  |  |  |                            mms->remaining_in_len, mms->asf_packet_len); | 
					
						
							|  |  |  |  |                     result= AVERROR_IO; | 
					
						
							|  |  |  |  |                 } else { | 
					
						
							|  |  |  |  |                     // copy the data to the packet buffer.
 | 
					
						
							|  |  |  |  |                     result = read_data(mms, buf, size); | 
					
						
							|  |  |  |  |                     if (result == 0) { | 
					
						
							|  |  |  |  |                         dprintf(NULL, "read asf media paket size is zero!\n"); | 
					
						
							|  |  |  |  |                         break; | 
					
						
							|  |  |  |  |                     } | 
					
						
							|  |  |  |  |                 } | 
					
						
							|  |  |  |  |             } else { | 
					
						
							|  |  |  |  |                 dprintf(NULL, "read packet error!\n"); | 
					
						
							|  |  |  |  |                 break; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     } while(!result); // only return one packet.
 | 
					
						
							|  |  |  |  |     return result; | 
					
						
							| 
									
										
										
										
											2010-05-24 21:59:32 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | URLProtocol mmst_protocol = { | 
					
						
							|  |  |  |  |     "mmst", | 
					
						
							|  |  |  |  |     mms_open, | 
					
						
							|  |  |  |  |     mms_read, | 
					
						
							|  |  |  |  |     NULL, // write
 | 
					
						
							|  |  |  |  |     NULL, // seek
 | 
					
						
							|  |  |  |  |     mms_close, | 
					
						
							|  |  |  |  | }; |