Rev 86044 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/** R : A Computer Language for Statistical Data Analysis* Copyright (C) 1997--2024 The R Core Team* Copyright (C) 1995, 1996 Robert Gentleman and Ross Ihaka** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, a copy is available at* https://www.R-project.org/Licenses/*//* <UTF8>char here is mainly handled as a whole string.Does handle file names.Chopping final \n is OK in UTF-8.*//* See system.txt for a description of functions */#ifdef HAVE_CONFIG_H# include <config.h>#endif#define R_USE_SIGNALS 1#include <Defn.h>#include <Internal.h>#include <Fileio.h>#include <Rmath.h> /* for fround */#include "Runix.h"#ifdef HAVE_UNISTD_H# include <unistd.h>#endif#ifndef HAVE_GETRUSAGE# ifdef HAVE_SYS_TIME_H# include <sys/times.h># endif#endif#ifdef HAVE_FCNTL_H# include <fcntl.h>#endif#if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRUSAGE)/* on macOS it seems sys/resource.h needs sys/time.h first */# include <sys/time.h># include <sys/resource.h>#endif#include <errno.h>/** 4) INITIALIZATION AND TERMINATION ACTIONS*/attribute_hiddenFILE *R_OpenInitFile(void){char buf[R_PATH_MAX], *home, *p = getenv("R_PROFILE_USER");FILE *fp;fp = NULL;if (LoadInitFile) {if(p) {if(!*p) return NULL; /* set to "" */return R_fopen(R_ExpandFileName(p), "r");}if((fp = R_fopen(".Rprofile", "r")))return fp;if((home = getenv("HOME")) == NULL)return NULL;snprintf(buf, R_PATH_MAX, "%s/.Rprofile", home);if((fp = R_fopen(buf, "r")))return fp;}return fp;}/** R_CleanUp is interface-specific*//** 5) FILESYSTEM INTERACTION*//** R_ShowFiles is interface-specific*//** R_ChooseFile is interface-specific*/#if defined(HAVE_LIBREADLINE) && defined(HAVE_TILDE_EXPAND_WORD)char *R_ExpandFileName_readline(const char *s, char *buff); /* sys-std.c */#endif#if defined(HAVE_PWD_H)# include <pwd.h>#endifstatic const char *R_ExpandFileName_unix(const char *s, char *buff){if(s[0] != '~') return s;const char *user, *temp, *s2, *home;char buff2[R_PATH_MAX];struct passwd *pass;temp = strchr(s + 1, '/');if (temp == NULL) { // ~nameuser = s + 1;} else { // ~name/path/* extract text befoe first slash */size_t len = (size_t)(temp - s + 1);(void) strncpy(buff2, s + 1, len - 2);buff2[len - 2] = '\0';user = buff2;s2 = s + len;}if (user[0] == 0) {// follow readline (and not libedit) in preferring HOMEhome = getenv("HOME");#if defined(HAVE_GETPWUID) && defined(HAVE_GETUID)if(home == NULL || streql(home, "")) {pass = getpwuid(getuid());if(pass == NULL) return s;home = pass->pw_dir;}#endifif(home == NULL) return s;} else {#ifdef HAVE_GETPWNAMpass = getpwnam(user);if(pass == NULL) return s;home = pass->pw_dir;#elsereturn s;#endif}if (temp == NULL) { // ~namestrcpy(buff, home);} else { // ~name/path// ask snprintf to compute the length, as GCC 12 complains otherwise.size_t len = snprintf(NULL, 0, "%s/%s", home, s2);// buff is passed from R_ExpandFileName, uses static array of// size R_PATH_MAX.if (len >= R_PATH_MAX) {warning(_("expanded path length %lld would be too long for\n%s\n"),(long long)len, s);return s;}(void)snprintf(buff, len + 1, "%s/%s", home, s2);}return buff;}/* tilde_expand_word (in libreadline) mallocs storage for its return value.The R entry point does not require that storage to be freed, so wecopy the value to a static buffer, to void a memory leak in R<=1.6.0.This is not thread-safe, but as R_ExpandFileName is a public entrypoint (in R-exts.texi) it would need to deprecated and replaced by aversion which takes a buffer as an argument.BDR 10/2002*/extern Rboolean UsingReadline;static char newFileName[R_PATH_MAX];const char *R_ExpandFileName(const char *s){#if defined(HAVE_LIBREADLINE) && defined(HAVE_TILDE_EXPAND_WORD)if(UsingReadline) {const char * c = R_ExpandFileName_readline(s, newFileName);/* we can return the result only if tilde_expand is not broken */if (!c || c[0]!='~' || (c[1]!='\0' && c[1]!='/'))return c;}#endifreturn R_ExpandFileName_unix(s, newFileName);}/** 7) PLATFORM DEPENDENT FUNCTIONS*/attribute_hidden SEXP do_machine(SEXP call, SEXP op, SEXP args, SEXP env){checkArity(op, args);return mkString("Unix");}# ifdef HAVE_SYS_TIMES_H# include <sys/times.h> /* times */# endifstatic double clk_tck, StartTime;void R_setStartTime(void){#ifdef HAVE_SYSCONFclk_tck = (double) sysconf(_SC_CLK_TCK);#else# ifndef CLK_TCK/* this is in ticks/second, generally 60 on BSD style Unix, 100? on SysV*/# ifdef HZ# define CLK_TCK HZ# else# define CLK_TCK 60# endif# endif /* not CLK_TCK */clk_tck = (double) CLK_TCK;#endif/* printf("CLK_TCK = %d\n", CLK_TCK); */StartTime = currentTime();}/* NOTEThis used to use times() for elapsed times, which is measured inclock ticks (which can overflow). It is possible this version usestime() and so is in seconds. But even Cygwin has gettimeofday.*/attribute_hiddenvoid R_getProcTime(double *data){/* docs say this is rounded to the nearest ms */double et = currentTime() - StartTime;data[2] = 1e-3 * rint(1000*et);#ifdef HAVE_GETRUSAGE/* all known current OSes */struct rusage self, children;getrusage(RUSAGE_SELF, &self);getrusage(RUSAGE_CHILDREN, &children);data[0] = (double) self.ru_utime.tv_sec + 1e-3 * (double)( self.ru_utime.tv_usec/1000);data[1] = (double) self.ru_stime.tv_sec + 1e-3 * (double)( self.ru_stime.tv_usec/1000);data[3] = (double) children.ru_utime.tv_sec + 1e-3 * (double)(children.ru_utime.tv_usec/1000);data[4] = (double) children.ru_stime.tv_sec + 1e-3 * (double)(children.ru_stime.tv_usec/1000);#else/* Not known to be currently used */struct tms timeinfo;times(&timeinfo);data[0] = fround(timeinfo.tms_utime / clk_tck, 3);data[1] = fround(timeinfo.tms_stime / clk_tck, 3);data[3] = fround(timeinfo.tms_cutime / clk_tck, 3);data[4] = fround(timeinfo.tms_cstime / clk_tck, 3);#endif}/* used in memory.c *//* FIXME: maybe should try to find the increment for getrusage */attribute_hiddendouble R_getClockIncrement(void){return 1.0 / clk_tck;}#ifdef HAVE_SYS_WAIT_H# include <sys/wait.h>#endif/* The timeout support is inspired by timeout utility from coreutils.However, here the child process creates a new process group rather thanthe parent (R) process, because changing the group leader for the wholeof R might have undesirable consequences. According to comments incoreutils, this could lead to issues with propagating signals betweenforeground and background process groups. Like with coreutils, thetimeout is not always enforced: an external application can run longerthan the timeout when it creates a new process group or when it spawns achild process and exits without waiting for it to finish (becomes adaemon). This implementation only works for processes that do not readfrom the standard input - the new process group is always created, andhence the executed process can no longer access the terminal. To preventinterference with job control, the new process is thus started withstandard input redirected from /dev/null. Note that while the timeoututility allows to run processes also without creating the new group(option `foreground`), that approach would interfere with job control in"/bin/sh" that is documented to be used by the R system call. There doesnot seem to be a simple way to address this issue, and hence interactiveapplications cannot be executed with timeout (and note the same issuesarise when timeout utility is used with /bin/sh).Currently we only have a single global structure and hence only one callto R_popen_timeout/R_system_timeout may be active at the same time. A moregeneral implementation could use a linked list and identify entries byfile pointer and child pid.Timeouts with background jobs (ending with &) are not supported.This code can also be used without an actual timeout (have_timeout == 0)as a partial implementation of system/popen/pclose which uses processgroups, but it differs in signal handling and termination.*/#define KILL_SIGNAL1 SIGINT#define KILL_SIGNAL2 SIGTERM#define KILL_SIGNAL3 SIGKILL#define EMERGENCY_TIMEOUT 20/* The child processes are sent KILL_SIGNAL1 after the specified timeout.As a backup, KILL_SIGNAL2 would be sent after additional EMERGENCY_TIMEOUTseconds. As a backup of the backup, KILL_SIGNAL3 would be sent after yetadditional EMERGENCY_TIMEOUT seconds.SIGINT is used first because it seems to be handled better by applications:applications happen to wait for child processes to terminate, and hencetheir execution is included into getrusage/RUSAGE_CHILDREN (proc.time).As follows from empirical observations, SIGTERM can sometimes terminateapplications that cannot be terminated by SIGINT. */static int kill_signals[] = { KILL_SIGNAL1, KILL_SIGNAL2, KILL_SIGNAL3 };static struct {pid_t child_pid;int timedout; /* set when the child has been timed out */int kill_attempts; /* 1 after sending KILL_SIGNAL1, etc */sigset_t oldset;struct sigaction oldalrm, oldint, oldquit, oldhup, oldterm, oldttin,oldttou, oldcont, oldtstp, oldchld;RCNTXT cntxt; /* for popen/pclose */FILE *fp; /* for popen/pclose, sanity check */int have_alarm; /* 0 when not really having a timeout */} tost;static void timeout_handler(int sig);static void timeout_init(int have_alarm){tost.child_pid = 0;tost.timedout = 0;tost.kill_attempts = 0;sigprocmask(0, NULL, &tost.oldset);tost.have_alarm = have_alarm;if (tost.have_alarm)sigaction(SIGALRM, NULL, &tost.oldalrm);sigaction(SIGINT, NULL, &tost.oldint);sigaction(SIGQUIT, NULL, &tost.oldquit);sigaction(SIGHUP, NULL, &tost.oldhup);sigaction(SIGTERM, NULL, &tost.oldterm);sigaction(SIGTTIN, NULL, &tost.oldttin);sigaction(SIGTTOU, NULL, &tost.oldttou);sigaction(SIGCONT, NULL, &tost.oldcont);sigaction(SIGTSTP, NULL, &tost.oldtstp);sigaction(SIGCHLD, NULL, &tost.oldchld);tost.fp = NULL;/* install handler */struct sigaction sa;sigemptyset(&sa.sa_mask);sa.sa_handler = &timeout_handler;sa.sa_flags = SA_RESTART;if (tost.have_alarm)sigaction(SIGALRM, &sa, NULL);sigaction(SIGINT, &sa, NULL);sigaction(SIGQUIT, &sa, NULL);sigaction(SIGHUP, &sa, NULL);sigaction(SIGCONT, &sa, NULL);sigaction(SIGTSTP, &sa, NULL);sigaction(SIGTERM, &sa, NULL);sigaction(SIGCHLD, &sa, NULL);}static void timeout_cleanup_set(sigset_t *ss){sigemptyset(ss);if (tost.have_alarm)sigaddset(ss, SIGALRM);sigaddset(ss, SIGINT);sigaddset(ss, SIGQUIT);sigaddset(ss, SIGHUP);sigaddset(ss, SIGTERM);sigaddset(ss, SIGTTIN);sigaddset(ss, SIGTTOU);sigaddset(ss, SIGCONT);sigaddset(ss, SIGTSTP);sigaddset(ss, SIGCHLD);}static void timeout_cleanup(void){sigset_t ss;timeout_cleanup_set(&ss);sigprocmask(SIG_BLOCK, &ss, NULL);if (tost.have_alarm) {alarm(0); /* clear alarm */sigaction(SIGALRM, &tost.oldalrm, NULL);}sigaction(SIGINT, &tost.oldint, NULL);sigaction(SIGQUIT, &tost.oldquit, NULL);sigaction(SIGHUP, &tost.oldhup, NULL);sigaction(SIGTERM, &tost.oldterm, NULL);sigaction(SIGTTIN, &tost.oldttin, NULL);sigaction(SIGTTOU, &tost.oldttou, NULL);sigaction(SIGCONT, &tost.oldcont, NULL);sigaction(SIGTSTP, &tost.oldtstp, NULL);sigaction(SIGCHLD, &tost.oldchld, NULL);sigprocmask(SIG_SETMASK, &tost.oldset, NULL);}static void timeout_handler(int sig){if (sig == SIGCHLD)return; /* needed for sigsuspend() to be interrupted */if (tost.child_pid > 0 && sig == SIGALRM && tost.have_alarm) {tost.timedout = 1;if (tost.kill_attempts < 3) {sig = kill_signals[tost.kill_attempts];if (tost.kill_attempts < 2) {int saveerrno = errno;alarm(EMERGENCY_TIMEOUT);errno = saveerrno;}tost.kill_attempts++;} elsesig = KILL_SIGNAL1; /* should not happen */}if (tost.child_pid > 0) {/* parent, received a signal */if (sig == SIGCONT) {/* restore our SIGTSTP handler */struct sigaction sa;sigemptyset(&sa.sa_mask);sa.sa_handler = &timeout_handler;sa.sa_flags = SA_RESTART;sigaction(SIGTSTP, &sa, NULL);}kill(tost.child_pid, sig);int saveerrno = errno;/* on macOS, killpg fails with EPERM for groups with zombies */killpg(tost.child_pid, sig);errno = saveerrno;/* NOTE: don't signal the group and don't send SIGCONTfor interactive jobs */if (sig != SIGKILL && sig != SIGCONT && sig != SIGTSTP) {kill(tost.child_pid, SIGCONT);saveerrno = errno;/* on macOS, killpg fails with EPERM for groups with zombies */killpg(tost.child_pid, SIGCONT);errno = saveerrno;}if (sig == SIGTSTP) {/* restore and invoke the original SIGTSTP handler */sigaction(SIGTSTP, &tost.oldtstp, NULL);raise(SIGTSTP);}} else if (tost.child_pid == 0) {/* child */_exit(128 + sig); /* arbitrary status, such as in timeout utility */}/* tost.child_pid is -1 when child process no longer exists */}static pid_t timeout_wait(int *wstatus){pid_t wres;/* make sure we do not accidentally send signals to a new processwith re-used pid from the child */sigset_t ss;timeout_cleanup_set(&ss);sigset_t unblocked_ss;sigprocmask(SIG_BLOCK, &ss, &unblocked_ss);int saveerrno = errno;while((wres = waitpid(tost.child_pid, wstatus, WNOHANG)) == 0)sigsuspend(&unblocked_ss);if (errno == EINTR)/* EINTR is not really an error but expected situation here, however,R's "system" call would report any non-zero errno as an error. */errno = saveerrno;if (wres == tost.child_pid)tost.child_pid = -1; /* the process no longer exists */timeout_cleanup();return wres;}static void timeout_cend(void *data){if (tost.child_pid > 0) {timeout_handler(tost.have_alarm ? SIGALRM : SIGQUIT);timeout_wait(NULL);}timeout_cleanup();}/* Fork with blocked SIGCHLD to make sure that tost.child_pid is setin the parent before the signal is received. Also makes sureSIGCHLD is unblocked in the parent after the call. */static void timeout_fork(void){sigset_t css;sigemptyset(&css);sigaddset(&css, SIGCHLD);sigprocmask(SIG_BLOCK, &css, NULL);tost.child_pid = fork();sigprocmask(SIG_UNBLOCK, &css, NULL);}/* R_popen_timeout, R_pclose_timeout - a partial implementation of popen/closewith support for timeout. The POSIX/Unix popen/pclose cannot be re-used,because the PID of the child process is not accessible via POSIX API.This simple implementation only supports a single pipe to be open at a timeand R_system_timeout cannot be used at the same time. It installs signalhandlers which exist between R_popen_timeout and R_pclose timeout, thereforethe amount of code that can correctly run in between is limited - this isintended only for implementing system(,intern=TRUE).It does not support close-on-exec ("e" flag).A pipe opened with R_popen_timeout cannot be closed by pclose.A pipe opened with popen cannot be closed by R_pclose_timeout.Timeout is in seconds. After timing out, the child process is interrupted.*/static FILE *R_popen_timeout(const char *cmd, const char *type, int timeout){/* close-on-exec is not supported */if (!type || type[1] || (type[0] != 'r' && type[0] != 'w')) {errno = EINVAL;return NULL;}int doread = (type[0] == 'r');int pipefd[2];int parent_end, child_end;if (pipe(pipefd) < 0)return NULL;if (doread) {parent_end = pipefd[0];child_end = pipefd[1];} else {parent_end = pipefd[1];child_end = pipefd[0];}/* Earlier version of R would block SIGPROF here on old Apple systemsfollowing Luke's recommendation on how to fix PR#1140 (see R_open,R_system). */timeout_init(timeout > 0);/* set up a context to recover from R error between popen and pclose */begincontext(&tost.cntxt, CTXT_CCODE, R_NilValue, R_BaseEnv, R_BaseEnv,R_NilValue, R_NilValue);tost.cntxt.cenddata = NULL;tost.cntxt.cend = &timeout_cend;signal(SIGTTIN, SIG_IGN);signal(SIGTTOU, SIG_IGN);timeout_fork();if (tost.child_pid == 0) {/* child */setpgid(0, 0); /* NOTE: don't create new group in interactive jobs */signal(SIGTTIN, SIG_DFL);signal(SIGTTOU, SIG_DFL);dup2(child_end, doread ? 1 : 0);close(child_end);close(parent_end);close(doread ? 0 : 1);/* ensure there is no read from terminal to avoid SIGTTIN */if (open("/dev/null", O_RDONLY) < 0) {perror("Cannot open /dev/null for reading:");_exit(127);}execl("/bin/sh", "sh", "-c", cmd, (char *)NULL);_exit(127); /* execl failed */} else if (tost.child_pid > 0) {/* parent */close(child_end);tost.fp = fdopen(parent_end, type);if (!tost.fp) {close(parent_end);return NULL;}if (tost.have_alarm) {sigset_t ss;sigemptyset(&ss);sigaddset(&ss, SIGALRM);sigprocmask(SIG_UNBLOCK, &ss, NULL);alarm(timeout); /* will get SIGALRM on timeout */}return tost.fp;} else {close(parent_end);return NULL;}}static int R_pclose_timeout(FILE *fp){if (fp != tost.fp)/* should not happen */error("Invalid file pointer in pclose");int saveerrno = errno;int res_fclose = fclose(fp);if (!res_fclose)/* On Solaris, fclose sets errno to "Invalid seek" when the pipe isalready closed (e.g. because of timeout). fclose would notreturn an error, but it would set errno and the non-zero errnowould then be reported by R's "system" function. */errno = saveerrno;pid_t wres;int wstatus;saveerrno = errno;wres = timeout_wait(&wstatus);endcontext(&tost.cntxt);if (wres < 0)return -1;if (res_fclose) {/* wait succeeded but fclose failed */errno = saveerrno;return -1;}return wstatus;}/* Similar to system, but supports timeout in seconds.Calls to R_system_timeout cannot be used when a pipe is open usingR_popen_timeout.*/static int R_system_timeout(const char *cmd, int timeout){if (!cmd)return R_system(cmd);/* Earlier version of R would block SIGPROF here on old Apple systemsfollowing Luke's recommendation on how to fix PR#1140 (see R_open,R_system). */timeout_init(timeout > 0);signal(SIGTTIN, SIG_IGN);signal(SIGTTOU, SIG_IGN);timeout_fork();if (tost.child_pid == 0) {/* child */close(0);/* ensure there is no read from terminal to avoid SIGTTIN */if (open("/dev/null", O_RDONLY) < 0) {perror("Cannot open /dev/null for reading:");_exit(127);}setpgid(0, 0);signal(SIGTTIN, SIG_DFL);signal(SIGTTOU, SIG_DFL);execl("/bin/sh", "sh", "-c", cmd, (char *)NULL);_exit(127); /* execl failed */} else if (tost.child_pid > 0) {/* parent */if (tost.have_alarm) {sigset_t ss;sigemptyset(&ss);sigaddset(&ss, SIGALRM);sigprocmask(SIG_UNBLOCK, &ss, NULL);alarm(timeout); /* will get SIGALRM on timeout */}int wstatus;timeout_wait(&wstatus);if (tost.child_pid != -1)return -1;#ifdef HAVE_SYS_WAIT_Hif (WIFEXITED(wstatus)) wstatus = WEXITSTATUS(wstatus);#else/* assume that this is shifted if a multiple of 256 */if ((wstatus % 256) == 0) wstatus = wstatus/256;#endifif (wstatus == -1) {/* this means that system() failed badly - it didn'teven get to try to run the shell */warning(_("system call failed: %s"), strerror(errno));/* R system() is documented to return 127 on failure, and a lot ofcode relies on that - it will misinterpret -1 as success */wstatus = 127;}return wstatus;} elsereturn -1;}/* R_popen_pg, R_pclose_pg are implementations of popen/pclose which run thebackground processes in a new process group, therefore guarding them fromsignals sent to the group R is in. The advantage is that Ctrl+C does notkill these processes. The disadvantage is that it is isolated also fromother signals (SIGTSTP/SIGCONT, SIGHUP, SIGQUIT). However, the pipe canbe expected to pause/terminate when the R's end keep quiet/is closed, soit is probably less of a problem than with R_system_timeout.Unlike R_popen_timeout/R_pclose_timeout, this does not install any signalhandlers and multiple instances may be used at a time. One must useR_pclose_timeout on a pipe opened with R_popen_timeout.The implementation is not thread safe. */typedef struct ppg_elt {FILE *fp;pid_t pid;struct ppg_elt *next;} ppg_t;static ppg_t *ppg = NULL;attribute_hidden FILE *R_popen_pg(const char *cmd, const char *type){/* close-on-exec is not supported */if (!type || type[1] || (type[0] != 'r' && type[0] != 'w')) {errno = EINVAL;return NULL;}ppg_t *nfo = malloc(sizeof(ppg_t));if (!nfo) {errno = ENOMEM;return NULL;}int doread = (type[0] == 'r');int pipefd[2];int parent_end, child_end;if (pipe(pipefd) < 0) {free(nfo);return NULL;}if (doread) {parent_end = pipefd[0];child_end = pipefd[1];} else {parent_end = pipefd[1];child_end = pipefd[0];}/* Earlier version of R would block SIGPROF here on old Apple systemsfollowing Luke's recommendation on how to fix PR#1140 (see R_open,R_system). */nfo->pid = fork();if (nfo->pid == 0) {/* child */setpgid(0, 0);/* close the parent ends of other pipes in the child, as requiredby POSIX */for(ppg_t *p = ppg; p != NULL; p = p->next) {int fd = fileno(p->fp);if (fd >= 0)/* do not use fclose to prevent sending FILE buffer contentmultiple times */close(fd);}dup2(child_end, doread ? 1 : 0);close(child_end);close(parent_end);if (doread) {/* ensure there is no read from terminal to avoid SIGTTIN */close(0);if (open("/dev/null", O_RDONLY) < 0) {perror("Cannot open /dev/null for reading:");_exit(127);}}/* allow standard output with !doread, because originally R's pipe()allowed it via C popen(), but it would cause SIGTTOU with tostop */execl("/bin/sh", "sh", "-c", cmd, (char *)NULL);_exit(127); /* execl failed */} else if (nfo->pid > 0) {/* parent */close(child_end);nfo->fp = fdopen(parent_end, type);if (!nfo->fp) {close(parent_end);free(nfo);return NULL;}nfo->next = ppg;ppg = nfo;return nfo->fp;} else {free(nfo);close(parent_end);return NULL;}}attribute_hidden int R_pclose_pg(FILE *fp){ppg_t *prev = NULL;for (ppg_t *p = ppg; p != NULL; p = p->next) {if (fp == p->fp) {if (prev == NULL)ppg = p->next;elseprev->next = p->next;int saveerrno = errno;int res_fclose = fclose(fp);if (!res_fclose)/* see R_pclose_timeout for why restoring errno on success */errno = saveerrno;/* This may not reliably retrieve the status of the child processin case SIGCHLD was set to SIG_IGN or SA_NOCLDWAIT was set forSIGCHLD. In that case, we may get a status for another processor more likely ECHILD. */saveerrno = errno;for(;;) {int wstatus = 0;pid_t res_waitpid = waitpid(p->pid, &wstatus, 0);if (res_waitpid != -1 || errno != EINTR) {free(p);if (res_waitpid == -1)return -1;if (res_fclose) {/* waitpid() succeeded but fclose failed */errno = saveerrno;return -1;}if (errno == EINTR)/* protect against incorrect error checking, hideEINTR from any previous calls to waitpid() */errno = saveerrno;return wstatus;}}}prev = p;}errno = ECHILD;return -1;}static void warn_status(const char *cmd, int res){if (!res)return;if (errno)/* FIXME: TK: non-zero errno is a sign of an error only whena function that modified it also signals an error by itsreturn value, usually -1 or EOF. We should not be reportingan error here (CERT ERR30-C).*//* on Solaris, if the command ends with non-zero status and timeoutis 0, "Illegal seek" error is reported; the timeout versionworks this around by restoring errno on success */warning(_("running command '%s' had status %d and error message '%s'"),cmd, res, strerror(errno));elsewarning(_("running command '%s' had status %d"), cmd, res);}NORET static void cmdError(const char *cmd, const char *format, ...){SEXP call = R_CurrentExpression;int nextra = errno ? 3 : 1;va_list(ap);va_start(ap, format);SEXP cond = R_vmakeErrorCondition(call, "cmdError", NULL,nextra, format, ap);va_end(ap);PROTECT(cond);R_setConditionField(cond, 2, "cmd", mkString(cmd));if (errno) {R_setConditionField(cond, 3, "errno", ScalarInteger(errno));R_setConditionField(cond, 4, "error", mkString(strerror(errno)));}R_signalErrorCondition(cond, call);UNPROTECT(1); /* cond; not reached */}#define INTERN_BUFSIZE 8096attribute_hidden SEXP do_system(SEXP call, SEXP op, SEXP args, SEXP rho){SEXP tlist = R_NilValue;int intern = 0;int timeout = 0;int consignals = 0;checkArity(op, args);if (!isValidStringF(CAR(args)))error(_("non-empty character argument expected"));intern = asLogical(CADR(args));if (intern == NA_INTEGER)error(_("'intern' must be logical and not NA"));timeout = asInteger(CADDR(args));if (timeout == NA_INTEGER || timeout < 0)error(_("invalid '%s' argument"), "timeout");consignals = asLogical(CADDDR(args));if (consignals == NA_INTEGER)error(_("'receive.console.signals' must be logical and not NA"));const char *cmd = translateCharFP(STRING_ELT(CAR(args), 0));int last_is_amp = 0;/* command ending with & is not supported by timeout */const void *vmax = vmaxget();const char *c = trCharUTF8(STRING_ELT(CAR(args), 0));int len = 0;for(;*c; c += len) {len = utf8clen(*c);if (len == 1) {if (*c == '&')last_is_amp = 1;else if (*c != ' ' && *c != '\t' && *c != '\r' && *c != '\n')last_is_amp = 0;} elselast_is_amp = 0;}vmaxset(vmax);if (last_is_amp && timeout > 0)error("Timeout with background running processes is not supported.");if (intern) { /* intern = TRUE */FILE *fp;char *x = "r",#ifdef HAVE_GETLINE*buf = NULL;size_t buf_len = 0;#elsebuf[INTERN_BUFSIZE + MB_LEN_MAX],buf2[MB_LEN_MAX + 1]; /* overflow bytes from MBCS truncation */#endifint i, j, res;SEXP tchar, rval;PROTECT(tlist);errno = 0; /* precaution */if (timeout == 0)fp = R_popen(cmd, x);elsefp = R_popen_timeout(cmd, x, timeout);if(!fp)cmdError(cmd, _("cannot popen '%s', probable reason '%s'"),cmd, strerror(errno));#ifdef HAVE_GETLINEsize_t read;for(i = 0; (read = getline(&buf, &buf_len, fp)) != (size_t)-1; i++) {if (buf[read - 1] == '\n')#elsesize_t read = 0;size_t truncb = 0; /* number of overflow bytes from MBCS truncation */buf[0] = '\0';for (i = 0; fgets(buf + truncb, INTERN_BUFSIZE, fp) || truncb; i++) {buf2[0] = '\0';read = strlen(buf);if (read >= INTERN_BUFSIZE - 1 + truncb) {warning(_("line %d may be truncated in call to system(, intern = TRUE)"), i + 1);/* save trailing bytes in buf2 in case they are from incompletemulti-byte character, and hence will be removed from buf bymbcsTruncateToValid */memcpy(buf2, buf + read - MB_LEN_MAX, MB_LEN_MAX);buf2[MB_LEN_MAX] = '\0';mbcsTruncateToValid(buf);truncb = read - strlen(buf);}else truncb = 0;if (read > 0 && buf[read-1] == '\n')#endifbuf[read - 1] = '\0'; /* chop final CR */tchar = mkChar(buf);UNPROTECT(1);PROTECT(tlist = CONS(tchar, tlist));#ifndef HAVE_GETLINEif (truncb > 0 && truncb <= MB_LEN_MAX)/* recover overflow bytes and prepend them for next line */strcpy(buf, buf2 + (MB_LEN_MAX - truncb));#endif}#ifdef HAVE_GETLINEif (buf != NULL)free(buf);#endifif (timeout == 0)res = pclose(fp);elseres = R_pclose_timeout(fp);/* On Solaris, pclose sometimes returns -1 and sets errno to ESPIPE(Illegal seek). In that case, do_system reports 0 exit status anddisplays a warning via warn_status. ESPIPE is not mentioned byPOSIX as possible outcome of pclose. */#ifdef HAVE_SYS_WAIT_Hif (WIFEXITED(res)) res = WEXITSTATUS(res);else res = 0;#else/* assume that this is shifted if a multiple of 256 */if ((res % 256) == 0) res = res/256;#endifif ((res & 0xff) == 127) {/* 127, aka -1 */if (errno)cmdError(cmd, _("error in running command: '%s'"),strerror(errno));elsecmdError(cmd, _("error in running command"));}if (timeout && tost.timedout) {res = 124;warning(_("command '%s' timed out after %ds"), cmd, timeout);} elsewarn_status(cmd, res);rval = PROTECT(allocVector(STRSXP, i));for (j = (i - 1); j >= 0; j--) {SET_STRING_ELT(rval, j, CAR(tlist));tlist = CDR(tlist);}if(res) {SEXP lsym = install("status");setAttrib(rval, lsym, ScalarInteger(res));if(errno) {lsym = install("errmsg");setAttrib(rval, lsym, mkString(strerror(errno)));}}UNPROTECT(2);return rval;}else { /* intern = FALSE */#ifdef HAVE_AQUAR_Busy(1);#endiftlist = PROTECT(allocVector(INTSXP, 1));fflush(stdout);int res;/* When running background processes (last_is_amp) in interactive mode,Ctrl+C (SIGINT) should just interrupt the currently executing Rloop or cancel currently edited command, but it should not killthe background processes (PR#17764). The C library system() runsbackground processes as (orphaned) processes in the same processgroup as R, so they receive SIGINT, and may terminate themselvesconsequently, such as R itself used to. Applications that leavethe SIG_IGN disposition of SIGINT (set by system()) alone will notbe terminated.We hence use R_system_timeout (even without a real timeout), whichruns the task in a new process group, and hence does not receiveSIGINT as a result of Ctrl+C from R console. However, we onlyuse R_system_timeout in this case, because it has undesirableconsequences for job control (SIGTSTP, SIGCONT missed, so Ctrl+Z doesnot suspend) and termination (SIGHUP missed, so terminal close doesnot terminate).When running a background process (last_is_amp, normally viawait=FALSE), which serves as an implementation of a foregroundoperation (such as clusterApply()), one can usereceive.console.signals=TRUE to force the non-timeoutimplementation. */if (timeout == 0 && (!R_Interactive || !last_is_amp || consignals))res = R_system(cmd);elseres = R_system_timeout(cmd, timeout);if (res == 127)warning(_("error in running command"));if (timeout && tost.timedout) {res = 124;warning(_("command '%s' timed out after %ds"), cmd, timeout);}INTEGER(tlist)[0] = res;#ifdef HAVE_AQUAR_Busy(0);#endifUNPROTECT(1);R_Visible = 0;return tlist;}}#ifdef HAVE_SYS_UTSNAME_H# include <sys/utsname.h># ifdef HAVE_UNISTD_H# include <unistd.h># endif# ifdef HAVE_PWD_H# include <pwd.h># endifattribute_hidden SEXP do_sysinfo(SEXP call, SEXP op, SEXP args, SEXP rho){SEXP ans, ansnames;struct utsname name;char *login;checkArity(op, args);PROTECT(ans = allocVector(STRSXP, 8));if(uname(&name) == -1) {UNPROTECT(1);return R_NilValue;}SET_STRING_ELT(ans, 0, mkChar(name.sysname));SET_STRING_ELT(ans, 1, mkChar(name.release));SET_STRING_ELT(ans, 2, mkChar(name.version));SET_STRING_ELT(ans, 3, mkChar(name.nodename));SET_STRING_ELT(ans, 4, mkChar(name.machine));login = getlogin();SET_STRING_ELT(ans, 5, login ? mkChar(login) : mkChar("unknown"));#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) && defined(HAVE_GETUID){struct passwd *stpwd;stpwd = getpwuid(getuid());SET_STRING_ELT(ans, 6, stpwd ? mkChar(stpwd->pw_name) : mkChar("unknown"));}#elseSET_STRING_ELT(ans, 6, mkChar("unknown"));#endif#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) && defined(HAVE_GETEUID){struct passwd *stpwd;stpwd = getpwuid(geteuid());SET_STRING_ELT(ans, 7, stpwd ? mkChar(stpwd->pw_name) : mkChar("unknown"));}#elseSET_STRING_ELT(ans, 7, mkChar("unknown"));#endifPROTECT(ansnames = allocVector(STRSXP, 8));SET_STRING_ELT(ansnames, 0, mkChar("sysname"));SET_STRING_ELT(ansnames, 1, mkChar("release"));SET_STRING_ELT(ansnames, 2, mkChar("version"));SET_STRING_ELT(ansnames, 3, mkChar("nodename"));SET_STRING_ELT(ansnames, 4, mkChar("machine"));SET_STRING_ELT(ansnames, 5, mkChar("login"));SET_STRING_ELT(ansnames, 6, mkChar("user"));SET_STRING_ELT(ansnames, 7, mkChar("effective_user"));setAttrib(ans, R_NamesSymbol, ansnames);UNPROTECT(2);return ans;}#else /* not HAVE_SYS_UTSNAME_H */SEXP do_sysinfo(SEXP call, SEXP op, SEXP args, SEXP rho){warning(_("Sys.info() is not implemented on this system"));return R_NilValue; /* -Wall */}#endif /* not HAVE_SYS_UTSNAME_H *//* The pointer here is used in the Mac GUI */#include <R_ext/eventloop.h> /* for R_PolledEvents */#include <R_ext/Rdynload.h>#define R_INTERFACE_PTRS 1#include <Rinterface.h> /* for ptr_R_ProcessEvents */void R_ProcessEvents(void){#ifdef HAVE_AQUA/* disable ProcessEvents in child,since we can't call CoreFoundation there. */if (ptr_R_ProcessEvents && !R_isForkedChild) ptr_R_ProcessEvents();#else/* We might in due course want to always inhibit in a child */if (ptr_R_ProcessEvents) ptr_R_ProcessEvents();#endifR_PolledEvents();if (cpuLimit > 0.0 || elapsedLimit > 0.0)R_CheckTimeLimits();}/** helpers for start-up code*/#ifdef __FreeBSD__# ifdef HAVE_FLOATINGPOINT_H# include <floatingpoint.h># endif#endif/* patch from Ei-ji Nakama for Intel compilers on ix86.From http://www.nakama.ne.jp/memo/ia32_linux/R-2.1.1.iccftzdaz.patch.txt.Since updated to include x86_64.*/#if (defined(__i386) || defined(__x86_64)) && defined(__INTEL_COMPILER) && __INTEL_COMPILER > 800#include <xmmintrin.h>#include <pmmintrin.h>#endif/* exported for Rembedded.h */void fpu_setup(Rboolean start){if (start) {#ifdef __FreeBSD__fpsetmask(0);#endif#if (defined(__i386) || defined(__x86_64)) && defined(__INTEL_COMPILER) && __INTEL_COMPILER > 800_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_OFF);_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_OFF);#endif#if defined(__ARM_ARCH) && defined(__ARM_32BIT_STATE) && defined(__ARM_FP)uint32_t fpscr;__asm__ volatile("vmrs %0, fpscr" : "=r"(fpscr));/* clear/disable DN (default NaN) and FZ (flush to zero) bits */fpscr = fpscr & 0xfcffffff;__asm__ volatile("vmsr fpscr, %0" : : "r"(fpscr));#elif defined(__ARM_ARCH) && defined(__ARM_64BIT_STATE) && defined(__ARM_FP)uint64_t fpcr;__asm__ volatile("mrs %0, fpcr" : "=r"(fpcr));/* clear/disable DN (default NaN) and FZ (flush to zero) bits */fpcr = fpcr & 0xfffffffffcffffff;__asm__ volatile("msr fpcr, %0" : : "r"(fpcr));#endif} else {#ifdef __FreeBSD__fpsetmask(~0);#endif}}