2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2010-01-27 23:58:03 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-04-03 14:28:34 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2010-01-27 23:58:03 -05:00
|
|
|
#include "test.h"
|
|
|
|
|
2010-02-02 02:01:21 -05:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
# include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
# include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
#endif
|
2010-01-28 05:27:09 -05:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
2010-02-02 02:01:21 -05:00
|
|
|
# include <sys/stat.h>
|
2010-01-28 05:27:09 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
2010-02-02 02:01:21 -05:00
|
|
|
# include <fcntl.h>
|
2010-01-28 05:27:09 -05:00
|
|
|
#endif
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "warnless.h"
|
|
|
|
#include "memdebug.h"
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2010-02-03 01:49:27 -05:00
|
|
|
#define RTP_PKT_CHANNEL(p) ((int)((unsigned char)((p)[1])))
|
|
|
|
|
|
|
|
#define RTP_PKT_LENGTH(p) ((((int)((unsigned char)((p)[2]))) << 8) | \
|
|
|
|
((int)((unsigned char)((p)[3]))))
|
|
|
|
|
2010-01-27 23:58:03 -05:00
|
|
|
#define RTP_DATA_SIZE 12
|
|
|
|
static const char *RTP_DATA = "$_1234\n\0asdf";
|
|
|
|
|
|
|
|
static int rtp_packet_count = 0;
|
|
|
|
|
2016-11-23 02:49:04 -05:00
|
|
|
static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream)
|
|
|
|
{
|
2010-01-27 23:58:03 -05:00
|
|
|
char *data = (char *)ptr;
|
2010-02-03 01:49:27 -05:00
|
|
|
int channel = RTP_PKT_CHANNEL(data);
|
2012-03-21 21:40:19 -04:00
|
|
|
int message_size;
|
2010-02-03 01:49:27 -05:00
|
|
|
int coded_size = RTP_PKT_LENGTH(data);
|
2017-06-03 14:18:34 -04:00
|
|
|
size_t failure = (size && nmemb) ? 0 : 1;
|
2010-01-27 23:58:03 -05:00
|
|
|
int i;
|
|
|
|
(void)stream;
|
|
|
|
|
2012-03-21 21:40:19 -04:00
|
|
|
message_size = curlx_uztosi(size * nmemb) - 4;
|
|
|
|
|
2010-01-27 23:58:03 -05:00
|
|
|
printf("RTP: message size %d, channel %d\n", message_size, channel);
|
2010-02-03 01:49:27 -05:00
|
|
|
if(message_size != coded_size) {
|
|
|
|
printf("RTP embedded size (%d) does not match the write size (%d).\n",
|
|
|
|
coded_size, message_size);
|
|
|
|
return failure;
|
2010-02-01 17:14:22 -05:00
|
|
|
}
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2010-02-01 17:14:22 -05:00
|
|
|
data += 4;
|
2010-01-27 23:58:03 -05:00
|
|
|
for(i = 0; i < message_size; i+= RTP_DATA_SIZE) {
|
|
|
|
if(message_size - i > RTP_DATA_SIZE) {
|
|
|
|
if(memcmp(RTP_DATA, data + i, RTP_DATA_SIZE) != 0) {
|
|
|
|
printf("RTP PAYLOAD CORRUPTED [%s]\n", data + i);
|
2010-02-03 01:49:27 -05:00
|
|
|
return failure;
|
2010-01-27 23:58:03 -05:00
|
|
|
}
|
2016-04-03 05:57:34 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(memcmp(RTP_DATA, data + i, message_size - i) != 0) {
|
2010-01-27 23:58:03 -05:00
|
|
|
printf("RTP PAYLOAD END CORRUPTED (%d), [%s]\n",
|
|
|
|
message_size - i, data + i);
|
2010-02-03 01:49:27 -05:00
|
|
|
return failure;
|
2010-01-27 23:58:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rtp_packet_count++;
|
|
|
|
fprintf(stderr, "packet count is %d\n", rtp_packet_count);
|
|
|
|
|
|
|
|
return size * nmemb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* build request url */
|
|
|
|
static char *suburl(const char *base, int i)
|
|
|
|
{
|
|
|
|
return curl_maprintf("%s%.4d", base, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
int test(char *URL)
|
|
|
|
{
|
2010-02-05 14:19:34 -05:00
|
|
|
int res;
|
2010-01-27 23:58:03 -05:00
|
|
|
CURL *curl;
|
2010-02-05 13:07:19 -05:00
|
|
|
char *stream_uri = NULL;
|
2010-01-27 23:58:03 -05:00
|
|
|
int request=1;
|
2010-02-06 08:21:45 -05:00
|
|
|
FILE *protofile = NULL;
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2010-01-28 05:27:09 -05:00
|
|
|
protofile = fopen(libtest_arg2, "wb");
|
2010-01-27 23:58:03 -05:00
|
|
|
if(protofile == NULL) {
|
|
|
|
fprintf(stderr, "Couldn't open the protocol dump file\n");
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
2016-04-03 05:57:34 -04:00
|
|
|
if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
|
2010-01-27 23:58:03 -05:00
|
|
|
fprintf(stderr, "curl_global_init() failed\n");
|
|
|
|
fclose(protofile);
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
2016-12-13 19:29:44 -05:00
|
|
|
curl = curl_easy_init();
|
|
|
|
if(!curl) {
|
2010-01-27 23:58:03 -05:00
|
|
|
fprintf(stderr, "curl_easy_init() failed\n");
|
|
|
|
fclose(protofile);
|
2010-02-06 08:21:45 -05:00
|
|
|
curl_global_cleanup();
|
2010-01-27 23:58:03 -05:00
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_URL, URL);
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2016-12-13 19:29:44 -05:00
|
|
|
stream_uri = suburl(URL, request++);
|
|
|
|
if(!stream_uri) {
|
2010-02-05 13:07:19 -05:00
|
|
|
res = TEST_ERR_MAJOR_BAD;
|
|
|
|
goto test_cleanup;
|
|
|
|
}
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
|
2010-01-27 23:58:03 -05:00
|
|
|
free(stream_uri);
|
2010-02-05 13:07:19 -05:00
|
|
|
stream_uri = NULL;
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_INTERLEAVEFUNCTION, rtp_write);
|
2013-07-22 15:07:06 -04:00
|
|
|
test_setopt(curl, CURLOPT_TIMEOUT, 3L);
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_VERBOSE, 1L);
|
|
|
|
test_setopt(curl, CURLOPT_WRITEDATA, protofile);
|
|
|
|
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "RTP/AVP/TCP;interleaved=0-1");
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP);
|
2010-01-27 23:58:03 -05:00
|
|
|
|
|
|
|
res = curl_easy_perform(curl);
|
2010-02-05 13:07:19 -05:00
|
|
|
if(res)
|
|
|
|
goto test_cleanup;
|
2010-01-27 23:58:03 -05:00
|
|
|
|
|
|
|
/* This PLAY starts the interleave */
|
2016-12-13 19:29:44 -05:00
|
|
|
stream_uri = suburl(URL, request++);
|
|
|
|
if(!stream_uri) {
|
2010-02-05 13:07:19 -05:00
|
|
|
res = TEST_ERR_MAJOR_BAD;
|
|
|
|
goto test_cleanup;
|
|
|
|
}
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
|
2010-01-27 23:58:03 -05:00
|
|
|
free(stream_uri);
|
2010-02-05 13:07:19 -05:00
|
|
|
stream_uri = NULL;
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY);
|
|
|
|
|
2010-01-27 23:58:03 -05:00
|
|
|
res = curl_easy_perform(curl);
|
2010-02-05 13:07:19 -05:00
|
|
|
if(res)
|
|
|
|
goto test_cleanup;
|
2010-01-27 23:58:03 -05:00
|
|
|
|
|
|
|
/* The DESCRIBE request will try to consume data after the Content */
|
2016-12-13 19:29:44 -05:00
|
|
|
stream_uri = suburl(URL, request++);
|
|
|
|
if(!stream_uri) {
|
2010-02-05 13:07:19 -05:00
|
|
|
res = TEST_ERR_MAJOR_BAD;
|
|
|
|
goto test_cleanup;
|
|
|
|
}
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
|
2010-01-27 23:58:03 -05:00
|
|
|
free(stream_uri);
|
2010-02-05 13:07:19 -05:00
|
|
|
stream_uri = NULL;
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE);
|
2010-01-27 23:58:03 -05:00
|
|
|
|
|
|
|
res = curl_easy_perform(curl);
|
2010-02-05 13:07:19 -05:00
|
|
|
if(res)
|
|
|
|
goto test_cleanup;
|
2010-01-27 23:58:03 -05:00
|
|
|
|
2016-12-13 19:29:44 -05:00
|
|
|
stream_uri = suburl(URL, request++);
|
|
|
|
if(!stream_uri) {
|
2010-02-06 08:21:45 -05:00
|
|
|
res = TEST_ERR_MAJOR_BAD;
|
|
|
|
goto test_cleanup;
|
|
|
|
}
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri);
|
2010-01-27 23:58:03 -05:00
|
|
|
free(stream_uri);
|
2010-02-05 13:07:19 -05:00
|
|
|
stream_uri = NULL;
|
|
|
|
test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY);
|
|
|
|
|
2010-01-27 23:58:03 -05:00
|
|
|
res = curl_easy_perform(curl);
|
2010-02-05 13:07:19 -05:00
|
|
|
if(res)
|
|
|
|
goto test_cleanup;
|
2010-01-27 23:58:03 -05:00
|
|
|
|
|
|
|
fprintf(stderr, "PLAY COMPLETE\n");
|
|
|
|
|
|
|
|
/* Use Receive to get the rest of the data */
|
|
|
|
while(!res && rtp_packet_count < 13) {
|
|
|
|
fprintf(stderr, "LOOPY LOOP!\n");
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_RECEIVE);
|
2010-01-27 23:58:03 -05:00
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
}
|
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_cleanup:
|
2015-03-11 12:41:01 -04:00
|
|
|
free(stream_uri);
|
2010-02-06 08:21:45 -05:00
|
|
|
|
|
|
|
if(protofile)
|
|
|
|
fclose(protofile);
|
2010-02-05 13:07:19 -05:00
|
|
|
|
2010-01-27 23:58:03 -05:00
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_global_cleanup();
|
|
|
|
|
2010-02-05 14:19:34 -05:00
|
|
|
return res;
|
2010-01-27 23:58:03 -05:00
|
|
|
}
|
|
|
|
|