From: oetiker Date: Tue, 14 May 2002 05:28:45 +0000 (+0000) Subject: make opendir readdir chdir chroot and thus the serverfunctionality X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=983730533e3741c2e930df572b74559326623fcc;p=rrdtool-all.git make opendir readdir chdir chroot and thus the serverfunctionality a conditional compile depending on the presence of the necessary function calls. git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@138 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/configure.ac b/program/configure.ac index 9c9fe258..ae599bc1 100644 --- a/program/configure.ac +++ b/program/configure.ac @@ -279,7 +279,7 @@ AC_FUNC_VPRINTF dnl for each function found we get a definition in config.h dnl of the form HAVE_FUNCTION -AC_CHECK_FUNCS(tzset setlocale strerror snprintf vsnprintf fpclass class fp_class isnan memmove strchr mktime getrusage gettimeofday) +AC_CHECK_FUNCS(tzset opendir readdir chdir chroot getuid setlocale strerror snprintf vsnprintf fpclass class fp_class isnan memmove strchr mktime getrusage gettimeofday) dnl HP-UX 11.00 does not have finite but does have isfinite as a macro AC_CHECK_FUNCS(fpclassify, , diff --git a/program/src/rrd_tool.c b/program/src/rrd_tool.c index 4a6c8cd7..72965260 100644 --- a/program/src/rrd_tool.c +++ b/program/src/rrd_tool.c @@ -253,7 +253,9 @@ int main(int argc, char *argv[]) { char **myargv; char aLine[MAX_LENGTH]; +#ifdef HAVE_CHROOT char *firstdir=""; +#endif #ifdef MUST_DISABLE_SIGFPE signal(SIGFPE,SIG_IGN); #endif @@ -279,7 +281,7 @@ int main(int argc, char *argv[]) gettimeofday(&starttime,&tz); #endif RemoteMode=1; -#ifndef WIN32 +#ifdef HAVE_CHROOT if ((argc == 3) && strcmp("",argv[2])){ if (getuid()==0){ chroot(argv[2]); @@ -303,8 +305,8 @@ int main(int argc, char *argv[]) } } #else - fprintf(stderr,"ERROR: change root only in unix " - "enviroment posible\n"); + fprintf(stderr,"ERROR: change root is not supported by your OS " + "or at least by this copy of rrdtool\n"); exit(1); #endif @@ -374,12 +376,13 @@ int HandleInputLine(int argc, char **argv, FILE* out) } exit(0); } +#if defined(HAVE_OPENDIR) && defined(HAVE_READDIR) && defined(HAVE_CHDIR) if (argc>1 && strcmp("cd", argv[1]) == 0){ if (argc>3){ printf("ERROR: invalid parameter count for cd\n"); return(0); } -#ifndef WIN32 +#if ! defined(HAVE_CHROOT) || ! defined(HAVE_GETUID) if (getuid()==0 && ! ChangeRoot){ printf("ERROR: chdir security problem - rrdtool is runnig as " "root an no chroot!\n"); @@ -397,7 +400,7 @@ int HandleInputLine(int argc, char **argv, FILE* out) printf("ERROR: invalid parameter count for mkdir\n"); return(0); } -#ifndef WIN32 +#if ! defined(HAVE_CHROOT) || ! defined(HAVE_GETUID) if (getuid()==0 && ! ChangeRoot){ printf("ERROR: mkdir security problem - rrdtool is runnig as " "root an no chroot!\n"); @@ -436,6 +439,8 @@ int HandleInputLine(int argc, char **argv, FILE* out) } return(0); } +#endif /* opendir and readdir */ + } if (argc < 3 || strcmp("help", argv[1]) == 0 @@ -519,7 +524,7 @@ int HandleInputLine(int argc, char **argv, FILE* out) } } else if (strcmp("xport", argv[1]) == 0) { int xxsize; - int i = 0, j = 0; + unsigned long int i = 0, j = 0; time_t start,end; unsigned long step, col_cnt,row_cnt; rrd_value_t *data,*ptr;