test 1502: OOM handling fixes

This commit is contained in:
Yang Tse
2012-12-23 21:22:03 +01:00
parent 7a09907146
commit 3456bbc4cc
3 changed files with 50 additions and 67 deletions

View File

@@ -35,7 +35,7 @@ http
lib1502 lib1502
</tool> </tool>
<name> <name>
HTTP multi with CURLOPT_RESOLVE HTTP multi with CURLOPT_RESOLVE, cleanup sequence UA
</name> </name>
<command> <command>
http://google.com:%HTTPPORT/1502 %HTTPPORT %HOSTIP http://google.com:%HTTPPORT/1502 %HTTPPORT %HOSTIP

View File

@@ -216,7 +216,8 @@ lib1500_LDADD = $(TESTUTIL_LIBS)
lib1501_SOURCES = lib1501.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1501_SOURCES = lib1501.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
lib1501_LDADD = $(TESTUTIL_LIBS) lib1501_LDADD = $(TESTUTIL_LIBS)
lib1502_SOURCES = lib1502.c $(SUPPORTFILES) lib1502_SOURCES = lib1502.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
lib1502_LDADD = $(TESTUTIL_LIBS)
libauthretry_SOURCES = libauthretry.c $(SUPPORTFILES) libauthretry_SOURCES = libauthretry.c $(SUPPORTFILES)

View File

@@ -20,8 +20,8 @@
* *
***************************************************************************/ ***************************************************************************/
/* /*
* Test case converted from bug report #3575448, identifying a memory leak in * Test case 1502 converted from bug report #3575448, identifying a memory
* the CURLOPT_RESOLVE handling with the multi interface. * leak in the CURLOPT_RESOLVE handling with the multi interface.
*/ */
#include "test.h" #include "test.h"
@@ -30,107 +30,89 @@
#include <limits.h> #include <limits.h>
#endif #endif
#include "testutil.h"
#include "warnless.h"
#include "memdebug.h"
#define TEST_HANG_TIMEOUT 60 * 1000
int test(char *URL) int test(char *URL)
{ {
CURL *ehandle; CURL* easy = NULL;
CURLM *multi_handle; CURLM* multi = NULL;
char redirect[160]; int still_running;
CURLcode result = CURLE_NOT_BUILT_IN; int res = 0;
int still_running; /* keep number of running handles */
CURLMsg *msg; /* for picking up messages with the transfer status */ char redirect[160];
int msgs_left; /* how many messages are left */
/* DNS cache injection */ /* DNS cache injection */
struct curl_slist *dns_cache_list; struct curl_slist *dns_cache_list;
sprintf(redirect, "google.com:%s:%s", libtest_arg2, libtest_arg3); sprintf(redirect, "google.com:%s:%s", libtest_arg2, libtest_arg3);
fprintf(stderr, "Redirect: %s\n", redirect); start_test_timing();
dns_cache_list = curl_slist_append(NULL, redirect); dns_cache_list = curl_slist_append(NULL, redirect);
if(!dns_cache_list) {
fprintf(stderr, "curl_slist_append() failed\n");
return TEST_ERR_MAJOR_BAD;
}
/* Allocate one CURL handle per transfer */ res_global_init(CURL_GLOBAL_ALL);
ehandle = curl_easy_init(); if(res) {
curl_slist_free_all(dns_cache_list);
return res;
}
/* set the options (I left out a few, you'll get the point anyway) */ easy_init(easy);
curl_easy_setopt(ehandle, CURLOPT_URL, URL);
curl_easy_setopt(ehandle, CURLOPT_HEADER, 1L);
curl_easy_setopt(ehandle, CURLOPT_RESOLVE, dns_cache_list); easy_setopt(easy, CURLOPT_URL, URL);
easy_setopt(easy, CURLOPT_HEADER, 1L);
easy_setopt(easy, CURLOPT_RESOLVE, dns_cache_list);
/* init a multi stack */ multi_init(multi);
multi_handle = curl_multi_init();
/* add the individual transfers */ multi_add_handle(multi, easy);
curl_multi_add_handle(multi_handle, ehandle);
/* we start some action by calling perform right away */ multi_perform(multi, &still_running);
curl_multi_perform(multi_handle, &still_running);
do { abort_on_test_timeout();
while(still_running) {
struct timeval timeout; struct timeval timeout;
int rc; /* select() return code */
fd_set fdread; fd_set fdread;
fd_set fdwrite; fd_set fdwrite;
fd_set fdexcep; fd_set fdexcep;
int maxfd = -1; int maxfd = -99;
long curl_timeo = -1;
FD_ZERO(&fdread); FD_ZERO(&fdread);
FD_ZERO(&fdwrite); FD_ZERO(&fdwrite);
FD_ZERO(&fdexcep); FD_ZERO(&fdexcep);
/* set a suitable timeout to play around with */
timeout.tv_sec = 1; timeout.tv_sec = 1;
timeout.tv_usec = 0; timeout.tv_usec = 0;
curl_multi_timeout(multi_handle, &curl_timeo); multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
if(curl_timeo >= 0) {
int itimeout = (curl_timeo > (long)INT_MAX) ? INT_MAX : (int)curl_timeo; /* At this point, maxfd is guaranteed to be greater or equal than -1. */
timeout.tv_sec = itimeout / 1000;
if(timeout.tv_sec > 1) select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
timeout.tv_sec = 1;
else abort_on_test_timeout();
timeout.tv_usec = (itimeout % 1000) * 1000;
multi_perform(multi, &still_running);
abort_on_test_timeout();
} }
/* get file descriptors from the transfers */ test_cleanup:
curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
/* In a real-world program you OF COURSE check the return code of the /* undocumented cleanup sequence - type UA */
function calls. On success, the value of maxfd is guaranteed to be
greater or equal than -1. We call select(maxfd + 1, ...), specially in
case of (maxfd == -1), we call select(0, ...), which is basically equal
to sleep. */
rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout); curl_multi_cleanup(multi);
curl_easy_cleanup(easy);
switch(rc) { curl_global_cleanup();
case -1:
/* select error */
break;
case 0: /* timeout */
default: /* action */
curl_multi_perform(multi_handle, &still_running);
break;
}
} while(still_running);
/* See how the transfers went */
while ((msg = curl_multi_info_read(multi_handle, &msgs_left))) {
if (msg->msg == CURLMSG_DONE)
result = msg->data.result;
}
curl_multi_cleanup(multi_handle);
/* Free the CURL handles */
curl_easy_cleanup(ehandle);
curl_slist_free_all(dns_cache_list); curl_slist_free_all(dns_cache_list);
return (int)result; return res;
} }