2006-10-25 17:20:44 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2004-11-19 16:52:33 +08:00
|
|
|
#include "test.h"
|
|
|
|
|
2004-11-23 06:26:46 +08:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2004-11-19 16:52:33 +08:00
|
|
|
#include <sys/types.h>
|
2004-11-23 06:26:46 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
2004-11-19 16:52:33 +08:00
|
|
|
#include <sys/stat.h>
|
2004-11-23 06:26:46 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
2004-11-19 16:52:33 +08:00
|
|
|
#include <fcntl.h>
|
2004-11-23 06:26:46 +08:00
|
|
|
#endif
|
|
|
|
#ifdef UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2004-11-19 16:52:33 +08:00
|
|
|
|
|
|
|
#include <mprintf.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FD_SETSIZE
|
|
|
|
#error "this test requires FD_SETSIZE"
|
|
|
|
#endif
|
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
#define SAFETY_MARGIN 16
|
2004-11-19 16:52:33 +08:00
|
|
|
#define NUM_OPEN (FD_SETSIZE + 10)
|
2006-10-31 01:24:31 +08:00
|
|
|
#define NUM_NEEDED (NUM_OPEN + SAFETY_MARGIN)
|
2004-11-19 16:52:33 +08:00
|
|
|
|
2006-10-12 00:01:16 +08:00
|
|
|
#if defined(WIN32) || defined(_WIN32) || defined(MSDOS)
|
2004-11-19 21:50:41 +08:00
|
|
|
#define DEV_NULL "NUL"
|
|
|
|
#else
|
|
|
|
#define DEV_NULL "/dev/null"
|
|
|
|
#endif
|
|
|
|
|
2004-11-23 06:26:46 +08:00
|
|
|
#if defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT)
|
2004-11-23 17:50:16 +08:00
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
static int *fd = NULL;
|
|
|
|
static struct rlimit num_open;
|
2004-12-01 18:34:46 +08:00
|
|
|
|
2006-10-25 13:59:46 +08:00
|
|
|
/*
|
|
|
|
* our_errno() returns the NOT *socket-related* errno (or equivalent)
|
|
|
|
* on this platform to hide platform specific for the calling function.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int our_errno(void)
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
return (int)GetLastError();
|
|
|
|
#else
|
|
|
|
return errno;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-10-26 21:55:24 +08:00
|
|
|
static void close_file_descriptors(void)
|
|
|
|
{
|
2006-10-31 09:24:03 +08:00
|
|
|
fprintf(stderr, "closing file descriptors\n");
|
2006-10-31 01:24:31 +08:00
|
|
|
for (num_open.rlim_cur = 0;
|
|
|
|
num_open.rlim_cur < num_open.rlim_max;
|
|
|
|
num_open.rlim_cur++)
|
|
|
|
close(fd[num_open.rlim_cur]);
|
|
|
|
free(fd);
|
|
|
|
fd = NULL;
|
2006-10-31 09:24:03 +08:00
|
|
|
fprintf(stderr, "file descriptors closed\n");
|
2006-10-26 21:55:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rlimit(int keep_open)
|
2004-11-19 16:52:33 +08:00
|
|
|
{
|
2006-10-31 01:24:31 +08:00
|
|
|
char *fmt;
|
2004-11-23 06:26:46 +08:00
|
|
|
struct rlimit rl;
|
2006-10-26 21:55:24 +08:00
|
|
|
char strbuff[81];
|
2006-10-31 01:24:31 +08:00
|
|
|
char fmt_u[] = "%u";
|
|
|
|
char fmt_lu[] = "%lu";
|
|
|
|
#ifdef HAVE_LONGLONG
|
|
|
|
char fmt_llu[] = "%llu";
|
2006-10-26 21:55:24 +08:00
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
if (sizeof(rl.rlim_max) > sizeof(long))
|
|
|
|
fmt = fmt_llu;
|
2006-10-26 21:55:24 +08:00
|
|
|
else
|
2006-10-31 01:24:31 +08:00
|
|
|
#endif
|
|
|
|
fmt = (sizeof(rl.rlim_max) < sizeof(long))?fmt_u:fmt_lu;
|
2004-11-28 16:57:03 +08:00
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
/* get initial open file limits */
|
2004-11-28 16:57:03 +08:00
|
|
|
|
2006-10-26 21:55:24 +08:00
|
|
|
if (getrlimit(RLIMIT_NOFILE, &rl) != 0) {
|
|
|
|
fprintf(stderr, "warning: getrlimit: failed to get RLIMIT_NOFILE "
|
|
|
|
"with errno %d\n", our_errno());
|
2004-11-23 17:50:16 +08:00
|
|
|
return -1;
|
2004-11-23 06:26:46 +08:00
|
|
|
}
|
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
/* show initial open file limits */
|
|
|
|
|
2006-10-26 21:55:24 +08:00
|
|
|
#ifdef RLIM_INFINITY
|
2006-10-31 01:24:31 +08:00
|
|
|
if (rl.rlim_cur == RLIM_INFINITY)
|
|
|
|
strcpy(strbuff, "INFINITY");
|
|
|
|
else
|
2006-10-26 21:55:24 +08:00
|
|
|
#endif
|
2006-10-31 01:24:31 +08:00
|
|
|
sprintf(strbuff, fmt, rl.rlim_cur);
|
|
|
|
fprintf(stderr, "initial SOFT_LIMIT: %s\n", strbuff);
|
2004-11-23 06:26:46 +08:00
|
|
|
|
2006-10-26 21:55:24 +08:00
|
|
|
#ifdef RLIM_INFINITY
|
2006-10-31 01:24:31 +08:00
|
|
|
if (rl.rlim_max == RLIM_INFINITY)
|
|
|
|
strcpy(strbuff, "INFINITY");
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
sprintf(strbuff, fmt, rl.rlim_max);
|
|
|
|
fprintf(stderr, "initial HARD_LIMIT: %s\n", strbuff);
|
|
|
|
|
|
|
|
/* show our constants */
|
|
|
|
|
|
|
|
fprintf(stderr, "test518 FD_SETSIZE: %d\n", FD_SETSIZE);
|
|
|
|
fprintf(stderr, "test518 NUM_OPEN : %d\n", NUM_OPEN);
|
|
|
|
fprintf(stderr, "test518 NUM_NEEDED: %d\n", NUM_NEEDED);
|
|
|
|
|
|
|
|
/* increase soft limit up to hard limit if different */
|
|
|
|
|
|
|
|
if (rl.rlim_cur != rl.rlim_max) {
|
|
|
|
rl.rlim_cur = rl.rlim_max;
|
|
|
|
if (setrlimit(RLIMIT_NOFILE, &rl) != 0) {
|
|
|
|
fprintf(stderr, "warning: setrlimit: failed to set RLIMIT_NOFILE "
|
|
|
|
"with errno %d\n", our_errno());
|
|
|
|
return -2;
|
2004-12-01 18:34:46 +08:00
|
|
|
}
|
2006-10-31 01:24:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get current open file limits */
|
|
|
|
|
|
|
|
if (getrlimit(RLIMIT_NOFILE, &rl) != 0) {
|
|
|
|
fprintf(stderr, "warning: getrlimit: failed to get RLIMIT_NOFILE "
|
|
|
|
"with errno %d\n", our_errno());
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if soft limit has not been increased all the way up to hard
|
|
|
|
limit, warn about it but continue since it may be high enough */
|
|
|
|
|
|
|
|
if (rl.rlim_cur != rl.rlim_max) {
|
|
|
|
fprintf(stderr, "warning: setrlimit: did not raise soft limit "
|
|
|
|
"up to hard limit\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* show current open file limits */
|
2006-10-26 21:55:24 +08:00
|
|
|
|
|
|
|
#ifdef RLIM_INFINITY
|
|
|
|
if (rl.rlim_cur == RLIM_INFINITY)
|
2006-10-31 01:24:31 +08:00
|
|
|
strcpy(strbuff, "INFINITY");
|
2006-10-26 21:55:24 +08:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
sprintf(strbuff, fmt, rl.rlim_cur);
|
2006-10-31 01:24:31 +08:00
|
|
|
fprintf(stderr, "current SOFT_LIMIT: %s\n", strbuff);
|
2006-10-26 21:55:24 +08:00
|
|
|
|
|
|
|
#ifdef RLIM_INFINITY
|
|
|
|
if (rl.rlim_max == RLIM_INFINITY)
|
2006-10-31 01:24:31 +08:00
|
|
|
strcpy(strbuff, "INFINITY");
|
2006-10-26 21:55:24 +08:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
sprintf(strbuff, fmt, rl.rlim_max);
|
2006-10-31 01:24:31 +08:00
|
|
|
fprintf(stderr, "current HARD_LIMIT: %s\n", strbuff);
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Our extreme test target is to open more than FD_SETSIZE files but
|
|
|
|
** it could happen that it would exceed the limit of allowed open
|
|
|
|
** files and we would not be able to test libcurl functionality. In
|
|
|
|
** this case we will open the maximum allowed minus our safety margin,
|
|
|
|
** which will run the test under this stress condition.
|
|
|
|
*/
|
|
|
|
|
|
|
|
num_open.rlim_cur = FD_SETSIZE;
|
|
|
|
num_open.rlim_max = NUM_OPEN;
|
|
|
|
if (num_open.rlim_cur > num_open.rlim_max)
|
|
|
|
num_open.rlim_max = num_open.rlim_cur;
|
|
|
|
|
|
|
|
#ifdef RLIM_INFINITY
|
|
|
|
if ((rl.rlim_cur > 0) && (rl.rlim_cur != RLIM_INFINITY)) {
|
|
|
|
#else
|
|
|
|
if (rl.rlim_cur > 0) {
|
|
|
|
#endif
|
|
|
|
if (num_open.rlim_max > rl.rlim_cur - SAFETY_MARGIN) {
|
|
|
|
num_open.rlim_max = rl.rlim_cur - SAFETY_MARGIN;
|
|
|
|
}
|
2004-12-01 18:34:46 +08:00
|
|
|
}
|
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
sprintf(strbuff, fmt, num_open.rlim_max);
|
|
|
|
fprintf(stderr, "allocating array for %s file descriptors\n", strbuff);
|
|
|
|
|
|
|
|
/* verify that we won't overflow size_t in malloc() */
|
|
|
|
|
|
|
|
if (num_open.rlim_max > ((size_t)-1) / sizeof(*fd)) {
|
|
|
|
fprintf(stderr, "is not possible, we would overflow size_t in malloc()\n");
|
|
|
|
num_open.rlim_max = ((size_t)-1) / sizeof(*fd);
|
|
|
|
sprintf(strbuff, fmt, num_open.rlim_max);
|
|
|
|
fprintf(stderr, "allocating array for %s file descriptors\n", strbuff);
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = malloc(sizeof(*fd) * (size_t)(num_open.rlim_max));
|
|
|
|
if (!fd) {
|
|
|
|
fprintf(stderr, "warning: memory allocation failed "
|
|
|
|
"with errno %d\n", our_errno());
|
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize fighting lazy allocation */
|
|
|
|
|
|
|
|
for (num_open.rlim_cur = 0;
|
|
|
|
num_open.rlim_cur < num_open.rlim_max;
|
|
|
|
num_open.rlim_cur++)
|
|
|
|
fd[num_open.rlim_cur] = -1;
|
|
|
|
|
|
|
|
sprintf(strbuff, fmt, num_open.rlim_max);
|
|
|
|
fprintf(stderr, "opening %s file descriptors\n", strbuff);
|
|
|
|
|
2004-12-01 18:34:46 +08:00
|
|
|
/* open a dummy descriptor */
|
|
|
|
fd[0] = open(DEV_NULL, O_RDONLY);
|
2006-10-26 21:55:24 +08:00
|
|
|
if (fd[0] < 0) {
|
2006-10-25 13:59:46 +08:00
|
|
|
fprintf(stderr, "open: failed to open %s "
|
|
|
|
"with errno %d\n", DEV_NULL, our_errno());
|
2006-10-31 01:24:31 +08:00
|
|
|
free(fd);
|
|
|
|
fd = NULL;
|
|
|
|
return -5;
|
2004-12-01 18:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a bunch of file descriptors */
|
2006-10-31 01:24:31 +08:00
|
|
|
for (num_open.rlim_cur = 1;
|
|
|
|
num_open.rlim_cur < num_open.rlim_max;
|
|
|
|
num_open.rlim_cur++) {
|
|
|
|
fd[num_open.rlim_cur] = dup(fd[0]);
|
|
|
|
if (fd[num_open.rlim_cur] < 0) {
|
|
|
|
sprintf(strbuff, fmt, num_open.rlim_cur);
|
|
|
|
fprintf(stderr, "dup: attempt #%s failed "
|
|
|
|
"with errno %d\n", strbuff, our_errno());
|
|
|
|
for (num_open.rlim_cur = 0;
|
|
|
|
fd[num_open.rlim_cur] >= 0;
|
|
|
|
num_open.rlim_cur++)
|
|
|
|
close(fd[num_open.rlim_cur]);
|
|
|
|
free(fd);
|
|
|
|
fd = NULL;
|
|
|
|
return -6;
|
2004-11-23 17:50:16 +08:00
|
|
|
}
|
|
|
|
}
|
2004-12-01 18:34:46 +08:00
|
|
|
|
2006-10-31 09:24:03 +08:00
|
|
|
sprintf(strbuff, fmt, num_open.rlim_max);
|
|
|
|
fprintf(stderr, "%s file descriptors open\n", strbuff);
|
|
|
|
|
2006-10-26 21:55:24 +08:00
|
|
|
/* close file descriptors unless instructed to keep them */
|
|
|
|
if (!keep_open) {
|
|
|
|
close_file_descriptors();
|
|
|
|
}
|
|
|
|
|
2004-11-23 17:50:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test(char *URL)
|
|
|
|
{
|
|
|
|
CURLcode res;
|
|
|
|
CURL *curl;
|
|
|
|
|
|
|
|
if(!strcmp(URL, "check")) {
|
|
|
|
/* used by the test script to ask if we can run this test or not */
|
2006-10-26 21:55:24 +08:00
|
|
|
if(rlimit(FALSE)) {
|
2006-10-31 01:24:31 +08:00
|
|
|
fprintf(stderr, "Previous condition prevents running this test\n");
|
2004-11-23 17:50:16 +08:00
|
|
|
printf("rlimit problems\n");
|
|
|
|
return 1;
|
2004-11-23 06:26:46 +08:00
|
|
|
}
|
2004-11-23 17:50:16 +08:00
|
|
|
return 0; /* sure, run this! */
|
2004-11-23 06:26:46 +08:00
|
|
|
}
|
|
|
|
|
2006-10-31 01:24:31 +08:00
|
|
|
if (rlimit(TRUE)) {
|
2004-11-23 17:50:16 +08:00
|
|
|
/* failure */
|
2006-10-31 01:24:31 +08:00
|
|
|
fprintf(stderr, "Previous condition aborts this test\n");
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2004-11-23 17:50:16 +08:00
|
|
|
|
2006-10-31 09:24:03 +08:00
|
|
|
/* run the test with more than FD_SETSIZE or max allowed open
|
|
|
|
file descriptors and close them all once the test is over */
|
2006-10-26 21:55:24 +08:00
|
|
|
|
2006-10-25 13:59:46 +08:00
|
|
|
if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
|
|
|
|
fprintf(stderr, "curl_global_init() failed\n");
|
2006-10-26 21:55:24 +08:00
|
|
|
close_file_descriptors();
|
2006-10-25 13:59:46 +08:00
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((curl = curl_easy_init()) == NULL) {
|
|
|
|
fprintf(stderr, "curl_easy_init() failed\n");
|
2006-10-26 21:55:24 +08:00
|
|
|
close_file_descriptors();
|
2006-10-25 13:59:46 +08:00
|
|
|
curl_global_cleanup();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
2004-11-19 16:52:33 +08:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, URL);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
|
2006-10-26 21:55:24 +08:00
|
|
|
|
2004-11-19 16:52:33 +08:00
|
|
|
res = curl_easy_perform(curl);
|
2006-10-26 21:55:24 +08:00
|
|
|
|
|
|
|
close_file_descriptors();
|
2004-11-19 16:52:33 +08:00
|
|
|
curl_easy_cleanup(curl);
|
2006-10-25 13:59:46 +08:00
|
|
|
curl_global_cleanup();
|
2004-11-19 16:52:33 +08:00
|
|
|
|
|
|
|
return (int)res;
|
|
|
|
}
|
2004-11-23 06:26:46 +08:00
|
|
|
#else
|
|
|
|
/* system lacks getrlimit() and/or setrlimit() */
|
|
|
|
int test(char *URL)
|
|
|
|
{
|
|
|
|
(void)URL;
|
2004-11-23 17:50:16 +08:00
|
|
|
printf("system lacks necessary system function(s)");
|
2004-11-23 06:26:46 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|