curl/tests/libtest/lib518.c

111 lines
2.3 KiB
C
Raw Normal View History

2004-11-19 03:52:33 -05:00
#include "test.h"
#ifdef HAVE_SYS_TYPES_H
2004-11-19 03:52:33 -05:00
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
2004-11-19 03:52:33 -05:00
#include <sys/stat.h>
#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 03:52:33 -05:00
#include <fcntl.h>
#endif
#ifdef UNISTD_H
#include <unistd.h>
#endif
2004-11-19 03:52:33 -05:00
#include <mprintf.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#ifndef FD_SETSIZE
#error "this test requires FD_SETSIZE"
#endif
#define NUM_OPEN (FD_SETSIZE + 10)
#define NUM_NEEDED (NUM_OPEN + 16)
2004-11-19 03:52:33 -05:00
2004-11-19 08:50:41 -05:00
#if defined(WIN32) || defined(_WIN32) || defined(MSDOS)
#define DEV_NULL "NUL"
#else
#define DEV_NULL "/dev/null"
#endif
#if defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT)
2004-11-19 03:52:33 -05:00
int test(char *URL)
{
struct rlimit rl;
2004-11-19 03:52:33 -05:00
int fd[NUM_OPEN];
int i;
CURLcode res;
CURL *curl;
2004-11-19 03:52:33 -05:00
/* get open file limits */
if (getrlimit(RLIMIT_NOFILE, &rl) == -1) {
fprintf(stderr, "warning: getrlimit: failed to get RLIMIT_NOFILE\n");
goto skip_open;
}
/* check that hard limit is high enough */
if (rl.rlim_max < NUM_NEEDED) {
fprintf(stderr, "warning: RLIMIT_NOFILE hard limit is too low\n");
goto skip_open;
}
/* increase soft limit if needed */
if (rl.rlim_cur < NUM_NEEDED) {
rl.rlim_cur = NUM_NEEDED;
if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {
fprintf(stderr, "warning: setrlimit: failed to set RLIMIT_NOFILE\n");
goto skip_open;
}
}
/* open a dummy descriptor */
fd[0] = open(DEV_NULL, O_RDONLY);
if (fd[0] == -1) {
fprintf(stderr, "open: failed to open %s\n", DEV_NULL);
return CURLE_FAILED_INIT;
}
/* create a bunch of file descriptors */
for (i = 1; i < NUM_OPEN; i++) {
fd[i] = dup(fd[0]);
2004-11-19 03:52:33 -05:00
if (fd[i] == -1) {
fprintf(stderr, "dup: attempt #%i failed\n", i);
2004-11-19 03:52:33 -05:00
for (i--; i >= 0; i--)
close(fd[i]);
return CURLE_FAILED_INIT;
}
}
skip_open:
2004-11-19 03:52:33 -05:00
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, URL);
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
for (i = 0; i < NUM_OPEN; i++)
close(fd[i]);
return (int)res;
}
#else
/* system lacks getrlimit() and/or setrlimit() */
int test(char *URL)
{
(void)URL;
fprintf(stderr, "system lacks necessary system function(s)");
return 1;
}
#endif