2004-09-11 12:56:56 +08:00
|
|
|
//===- Unix/Process.cpp - Unix Process Implementation --------- -*- C++ -*-===//
|
2010-11-30 02:16:10 +08:00
|
|
|
//
|
2004-09-11 12:56:56 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-11-30 02:16:10 +08:00
|
|
|
//
|
2004-09-11 12:56:56 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file provides the generic Unix implementation of the Process class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-12-20 08:59:28 +08:00
|
|
|
#include "Unix.h"
|
2012-05-09 04:38:00 +08:00
|
|
|
#include "llvm/ADT/Hashing.h"
|
2013-09-11 03:45:51 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2014-09-23 06:39:20 +08:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2013-08-07 16:47:36 +08:00
|
|
|
#include "llvm/Support/Mutex.h"
|
|
|
|
#include "llvm/Support/MutexGuard.h"
|
2012-05-09 04:38:00 +08:00
|
|
|
#include "llvm/Support/TimeValue.h"
|
2014-10-07 07:16:18 +08:00
|
|
|
#if HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
2004-12-20 08:59:28 +08:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
2014-10-13 06:49:26 +08:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
2014-10-07 13:56:45 +08:00
|
|
|
#if HAVE_SIGNAL_H
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
2012-08-07 04:52:18 +08:00
|
|
|
// DragonFlyBSD, OpenBSD, and Bitrig have deprecated <malloc.h> for
|
|
|
|
// <stdlib.h> instead. Unix.h includes this for us already.
|
|
|
|
#if defined(HAVE_MALLOC_H) && !defined(__DragonFly__) && \
|
|
|
|
!defined(__OpenBSD__) && !defined(__Bitrig__)
|
2004-12-20 08:59:28 +08:00
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
2005-11-14 15:00:29 +08:00
|
|
|
#ifdef HAVE_MALLOC_MALLOC_H
|
|
|
|
#include <malloc/malloc.h>
|
|
|
|
#endif
|
2009-05-12 02:05:52 +08:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
2009-05-19 01:21:34 +08:00
|
|
|
#ifdef HAVE_TERMIOS_H
|
|
|
|
# include <termios.h>
|
|
|
|
#endif
|
2004-09-11 12:56:56 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only generic UNIX code that
|
|
|
|
//=== is guaranteed to work on *all* UNIX variants.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-09-14 14:01:41 +08:00
|
|
|
using namespace llvm;
|
2004-09-11 12:56:56 +08:00
|
|
|
using namespace sys;
|
2012-12-31 19:17:50 +08:00
|
|
|
|
2013-01-05 07:19:55 +08:00
|
|
|
static std::pair<TimeValue, TimeValue> getRUsageTimes() {
|
|
|
|
#if defined(HAVE_GETRUSAGE)
|
|
|
|
struct rusage RU;
|
|
|
|
::getrusage(RUSAGE_SELF, &RU);
|
|
|
|
return std::make_pair(
|
|
|
|
TimeValue(
|
|
|
|
static_cast<TimeValue::SecondsType>(RU.ru_utime.tv_sec),
|
|
|
|
static_cast<TimeValue::NanoSecondsType>(
|
|
|
|
RU.ru_utime.tv_usec * TimeValue::NANOSECONDS_PER_MICROSECOND)),
|
|
|
|
TimeValue(
|
|
|
|
static_cast<TimeValue::SecondsType>(RU.ru_stime.tv_sec),
|
|
|
|
static_cast<TimeValue::NanoSecondsType>(
|
|
|
|
RU.ru_stime.tv_usec * TimeValue::NANOSECONDS_PER_MICROSECOND)));
|
|
|
|
#else
|
|
|
|
#warning Cannot get usage times on this platform
|
|
|
|
return std::make_pair(TimeValue(), TimeValue());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-09-04 22:12:26 +08:00
|
|
|
// On Cygwin, getpagesize() returns 64k(AllocationGranularity) and
|
|
|
|
// offset in mmap(3) should be aligned to the AllocationGranularity.
|
2014-12-05 00:59:36 +08:00
|
|
|
unsigned Process::getPageSize() {
|
2013-08-21 21:47:12 +08:00
|
|
|
#if defined(HAVE_GETPAGESIZE)
|
2014-12-05 00:59:36 +08:00
|
|
|
static const int page_size = ::getpagesize();
|
2004-12-20 08:59:28 +08:00
|
|
|
#elif defined(HAVE_SYSCONF)
|
2014-12-05 00:59:36 +08:00
|
|
|
static long page_size = ::sysconf(_SC_PAGE_SIZE);
|
2004-12-20 08:59:28 +08:00
|
|
|
#else
|
|
|
|
#warning Cannot get the page size on this machine
|
|
|
|
#endif
|
2004-09-11 12:56:56 +08:00
|
|
|
return static_cast<unsigned>(page_size);
|
|
|
|
}
|
|
|
|
|
2005-11-14 15:00:29 +08:00
|
|
|
size_t Process::GetMallocUsage() {
|
2004-12-21 00:06:44 +08:00
|
|
|
#if defined(HAVE_MALLINFO)
|
2004-12-20 08:59:28 +08:00
|
|
|
struct mallinfo mi;
|
|
|
|
mi = ::mallinfo();
|
|
|
|
return mi.uordblks;
|
2005-11-14 15:27:56 +08:00
|
|
|
#elif defined(HAVE_MALLOC_ZONE_STATISTICS) && defined(HAVE_MALLOC_MALLOC_H)
|
|
|
|
malloc_statistics_t Stats;
|
|
|
|
malloc_zone_statistics(malloc_default_zone(), &Stats);
|
|
|
|
return Stats.size_in_use; // darwin
|
2004-12-21 00:06:44 +08:00
|
|
|
#elif defined(HAVE_SBRK)
|
2004-12-20 08:59:28 +08:00
|
|
|
// Note this is only an approximation and more closely resembles
|
|
|
|
// the value returned by mallinfo in the arena field.
|
2005-11-14 15:00:29 +08:00
|
|
|
static char *StartOfMemory = reinterpret_cast<char*>(::sbrk(0));
|
|
|
|
char *EndOfMemory = (char*)sbrk(0);
|
|
|
|
if (EndOfMemory != ((char*)-1) && StartOfMemory != ((char*)-1))
|
|
|
|
return EndOfMemory - StartOfMemory;
|
2004-12-20 08:59:28 +08:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
#warning Cannot get malloc info on this platform
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-01-05 07:19:55 +08:00
|
|
|
void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
|
|
|
|
TimeValue &sys_time) {
|
2004-12-20 08:59:28 +08:00
|
|
|
elapsed = TimeValue::now();
|
2014-03-02 21:30:33 +08:00
|
|
|
std::tie(user_time, sys_time) = getRUsageTimes();
|
2004-12-20 08:59:28 +08:00
|
|
|
}
|
|
|
|
|
2012-04-11 23:35:36 +08:00
|
|
|
#if defined(HAVE_MACH_MACH_H) && !defined(__GNU__)
|
2008-04-12 08:47:46 +08:00
|
|
|
#include <mach/mach.h>
|
|
|
|
#endif
|
|
|
|
|
2004-12-27 14:17:27 +08:00
|
|
|
// Some LLVM programs such as bugpoint produce core files as a normal part of
|
|
|
|
// their operation. To prevent the disk from filling up, this function
|
|
|
|
// does what's necessary to prevent their generation.
|
|
|
|
void Process::PreventCoreFiles() {
|
|
|
|
#if HAVE_SETRLIMIT
|
|
|
|
struct rlimit rlim;
|
|
|
|
rlim.rlim_cur = rlim.rlim_max = 0;
|
2006-05-15 02:53:09 +08:00
|
|
|
setrlimit(RLIMIT_CORE, &rlim);
|
2004-12-27 14:17:27 +08:00
|
|
|
#endif
|
2006-09-14 14:01:41 +08:00
|
|
|
|
2012-04-11 23:35:36 +08:00
|
|
|
#if defined(HAVE_MACH_MACH_H) && !defined(__GNU__)
|
2008-04-12 08:47:46 +08:00
|
|
|
// Disable crash reporting on Mac OS X 10.0-10.4
|
|
|
|
|
|
|
|
// get information about the original set of exception ports for the task
|
|
|
|
mach_msg_type_number_t Count = 0;
|
|
|
|
exception_mask_t OriginalMasks[EXC_TYPES_COUNT];
|
|
|
|
exception_port_t OriginalPorts[EXC_TYPES_COUNT];
|
|
|
|
exception_behavior_t OriginalBehaviors[EXC_TYPES_COUNT];
|
|
|
|
thread_state_flavor_t OriginalFlavors[EXC_TYPES_COUNT];
|
2010-11-30 02:16:10 +08:00
|
|
|
kern_return_t err =
|
2008-04-12 08:47:46 +08:00
|
|
|
task_get_exception_ports(mach_task_self(), EXC_MASK_ALL, OriginalMasks,
|
|
|
|
&Count, OriginalPorts, OriginalBehaviors,
|
|
|
|
OriginalFlavors);
|
|
|
|
if (err == KERN_SUCCESS) {
|
|
|
|
// replace each with MACH_PORT_NULL.
|
|
|
|
for (unsigned i = 0; i != Count; ++i)
|
2010-11-30 02:16:10 +08:00
|
|
|
task_set_exception_ports(mach_task_self(), OriginalMasks[i],
|
2008-04-12 08:47:46 +08:00
|
|
|
MACH_PORT_NULL, OriginalBehaviors[i],
|
|
|
|
OriginalFlavors[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable crash reporting on Mac OS X 10.5
|
2008-04-01 06:19:25 +08:00
|
|
|
signal(SIGABRT, _exit);
|
|
|
|
signal(SIGILL, _exit);
|
|
|
|
signal(SIGFPE, _exit);
|
|
|
|
signal(SIGSEGV, _exit);
|
|
|
|
signal(SIGBUS, _exit);
|
2006-09-14 14:01:41 +08:00
|
|
|
#endif
|
2004-12-27 14:17:27 +08:00
|
|
|
}
|
2004-12-20 08:59:28 +08:00
|
|
|
|
2013-09-11 03:45:51 +08:00
|
|
|
Optional<std::string> Process::GetEnv(StringRef Name) {
|
|
|
|
std::string NameStr = Name.str();
|
|
|
|
const char *Val = ::getenv(NameStr.c_str());
|
|
|
|
if (!Val)
|
|
|
|
return None;
|
|
|
|
return std::string(Val);
|
|
|
|
}
|
|
|
|
|
2014-06-13 10:24:39 +08:00
|
|
|
std::error_code
|
|
|
|
Process::GetArgumentVector(SmallVectorImpl<const char *> &ArgsOut,
|
|
|
|
ArrayRef<const char *> ArgsIn,
|
|
|
|
SpecificBumpPtrAllocator<char> &) {
|
2013-10-07 09:00:07 +08:00
|
|
|
ArgsOut.append(ArgsIn.begin(), ArgsIn.end());
|
|
|
|
|
2014-06-13 10:24:39 +08:00
|
|
|
return std::error_code();
|
2013-10-07 09:00:07 +08:00
|
|
|
}
|
|
|
|
|
2014-10-07 07:16:18 +08:00
|
|
|
namespace {
|
|
|
|
class FDCloser {
|
|
|
|
public:
|
|
|
|
FDCloser(int &FD) : FD(FD), KeepOpen(false) {}
|
|
|
|
void keepOpen() { KeepOpen = true; }
|
|
|
|
~FDCloser() {
|
|
|
|
if (!KeepOpen && FD >= 0)
|
|
|
|
::close(FD);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FDCloser(const FDCloser &) LLVM_DELETED_FUNCTION;
|
|
|
|
void operator=(const FDCloser &) LLVM_DELETED_FUNCTION;
|
|
|
|
|
|
|
|
int &FD;
|
|
|
|
bool KeepOpen;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::error_code Process::FixupStandardFileDescriptors() {
|
|
|
|
int NullFD = -1;
|
|
|
|
FDCloser FDC(NullFD);
|
|
|
|
const int StandardFDs[] = {STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO};
|
|
|
|
for (int StandardFD : StandardFDs) {
|
|
|
|
struct stat st;
|
|
|
|
errno = 0;
|
|
|
|
while (fstat(StandardFD, &st) < 0) {
|
|
|
|
assert(errno && "expected errno to be set if fstat failed!");
|
|
|
|
// fstat should return EBADF if the file descriptor is closed.
|
|
|
|
if (errno == EBADF)
|
|
|
|
break;
|
|
|
|
// retry fstat if we got EINTR, otherwise bubble up the failure.
|
|
|
|
if (errno != EINTR)
|
|
|
|
return std::error_code(errno, std::generic_category());
|
|
|
|
}
|
|
|
|
// if fstat succeeds, move on to the next FD.
|
|
|
|
if (!errno)
|
|
|
|
continue;
|
|
|
|
assert(errno == EBADF && "expected errno to have EBADF at this point!");
|
|
|
|
|
|
|
|
if (NullFD < 0) {
|
|
|
|
while ((NullFD = open("/dev/null", O_RDWR)) < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
return std::error_code(errno, std::generic_category());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NullFD == StandardFD)
|
|
|
|
FDC.keepOpen();
|
|
|
|
else if (dup2(NullFD, StandardFD) < 0)
|
|
|
|
return std::error_code(errno, std::generic_category());
|
|
|
|
}
|
|
|
|
return std::error_code();
|
|
|
|
}
|
|
|
|
|
2014-10-07 13:48:40 +08:00
|
|
|
std::error_code Process::SafelyCloseFileDescriptor(int FD) {
|
|
|
|
// Create a signal set filled with *all* signals.
|
|
|
|
sigset_t FullSet;
|
|
|
|
if (sigfillset(&FullSet) < 0)
|
|
|
|
return std::error_code(errno, std::generic_category());
|
|
|
|
// Atomically swap our current signal mask with a full mask.
|
|
|
|
sigset_t SavedSet;
|
2014-10-08 16:48:43 +08:00
|
|
|
#if LLVM_ENABLE_THREADS
|
2014-10-07 13:48:40 +08:00
|
|
|
if (int EC = pthread_sigmask(SIG_SETMASK, &FullSet, &SavedSet))
|
|
|
|
return std::error_code(EC, std::generic_category());
|
2014-10-08 16:48:43 +08:00
|
|
|
#else
|
|
|
|
if (sigprocmask(SIG_SETMASK, &FullSet, &SavedSet) < 0)
|
|
|
|
return std::error_code(errno, std::generic_category());
|
|
|
|
#endif
|
2014-10-07 13:48:40 +08:00
|
|
|
// Attempt to close the file descriptor.
|
|
|
|
// We need to save the error, if one occurs, because our subsequent call to
|
|
|
|
// pthread_sigmask might tamper with errno.
|
|
|
|
int ErrnoFromClose = 0;
|
|
|
|
if (::close(FD) < 0)
|
|
|
|
ErrnoFromClose = errno;
|
|
|
|
// Restore the signal mask back to what we saved earlier.
|
2014-10-08 16:48:43 +08:00
|
|
|
int EC = 0;
|
|
|
|
#if LLVM_ENABLE_THREADS
|
|
|
|
EC = pthread_sigmask(SIG_SETMASK, &SavedSet, nullptr);
|
|
|
|
#else
|
|
|
|
if (sigprocmask(SIG_SETMASK, &SavedSet, nullptr) < 0)
|
|
|
|
EC = errno;
|
|
|
|
#endif
|
2014-10-07 13:48:40 +08:00
|
|
|
// The error code from close takes precedence over the one from
|
|
|
|
// pthread_sigmask.
|
|
|
|
if (ErrnoFromClose)
|
|
|
|
return std::error_code(ErrnoFromClose, std::generic_category());
|
|
|
|
return std::error_code(EC, std::generic_category());
|
|
|
|
}
|
|
|
|
|
2005-01-02 06:29:26 +08:00
|
|
|
bool Process::StandardInIsUserInput() {
|
2009-09-12 04:46:33 +08:00
|
|
|
return FileDescriptorIsDisplayed(STDIN_FILENO);
|
2005-01-02 06:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Process::StandardOutIsDisplayed() {
|
2009-09-12 04:46:33 +08:00
|
|
|
return FileDescriptorIsDisplayed(STDOUT_FILENO);
|
2005-01-02 06:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Process::StandardErrIsDisplayed() {
|
2009-09-12 04:46:33 +08:00
|
|
|
return FileDescriptorIsDisplayed(STDERR_FILENO);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Process::FileDescriptorIsDisplayed(int fd) {
|
2005-01-02 06:29:26 +08:00
|
|
|
#if HAVE_ISATTY
|
2009-09-12 04:46:33 +08:00
|
|
|
return isatty(fd);
|
2009-09-06 18:53:22 +08:00
|
|
|
#else
|
2005-01-02 06:29:26 +08:00
|
|
|
// If we don't have isatty, just return false.
|
|
|
|
return false;
|
2009-09-06 18:53:22 +08:00
|
|
|
#endif
|
2005-01-02 06:29:26 +08:00
|
|
|
}
|
2009-05-12 02:05:52 +08:00
|
|
|
|
|
|
|
static unsigned getColumns(int FileID) {
|
|
|
|
// If COLUMNS is defined in the environment, wrap to that many columns.
|
|
|
|
if (const char *ColumnsStr = std::getenv("COLUMNS")) {
|
|
|
|
int Columns = std::atoi(ColumnsStr);
|
|
|
|
if (Columns > 0)
|
|
|
|
return Columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Columns = 0;
|
|
|
|
|
2009-05-19 01:21:34 +08:00
|
|
|
#if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_TERMIOS_H)
|
2009-05-12 02:05:52 +08:00
|
|
|
// Try to determine the width of the terminal.
|
|
|
|
struct winsize ws;
|
|
|
|
if (ioctl(FileID, TIOCGWINSZ, &ws) == 0)
|
|
|
|
Columns = ws.ws_col;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return Columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Process::StandardOutColumns() {
|
|
|
|
if (!StandardOutIsDisplayed())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return getColumns(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Process::StandardErrColumns() {
|
|
|
|
if (!StandardErrIsDisplayed())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return getColumns(2);
|
|
|
|
}
|
2009-06-04 15:09:50 +08:00
|
|
|
|
2013-08-12 18:40:11 +08:00
|
|
|
#ifdef HAVE_TERMINFO
|
2013-08-18 09:20:32 +08:00
|
|
|
// We manually declare these extern functions because finding the correct
|
2013-08-12 18:40:11 +08:00
|
|
|
// headers from various terminfo, curses, or other sources is harder than
|
|
|
|
// writing their specs down.
|
|
|
|
extern "C" int setupterm(char *term, int filedes, int *errret);
|
2013-08-18 09:20:32 +08:00
|
|
|
extern "C" struct term *set_curterm(struct term *termp);
|
|
|
|
extern "C" int del_curterm(struct term *termp);
|
2013-08-12 18:40:11 +08:00
|
|
|
extern "C" int tigetnum(char *capname);
|
|
|
|
#endif
|
|
|
|
|
2014-09-25 02:35:58 +08:00
|
|
|
#ifdef HAVE_TERMINFO
|
2014-09-23 06:39:20 +08:00
|
|
|
static ManagedStatic<sys::Mutex> TermColorMutex;
|
2014-09-25 02:35:58 +08:00
|
|
|
#endif
|
2014-09-23 06:39:20 +08:00
|
|
|
|
2013-08-07 16:47:36 +08:00
|
|
|
static bool terminalHasColors(int fd) {
|
2013-08-12 17:49:17 +08:00
|
|
|
#ifdef HAVE_TERMINFO
|
|
|
|
// First, acquire a global lock because these C routines are thread hostile.
|
2014-09-23 06:39:20 +08:00
|
|
|
MutexGuard G(*TermColorMutex);
|
2013-08-07 16:47:36 +08:00
|
|
|
|
|
|
|
int errret = 0;
|
2014-04-28 12:05:08 +08:00
|
|
|
if (setupterm((char *)nullptr, fd, &errret) != 0)
|
2013-08-07 16:47:36 +08:00
|
|
|
// Regardless of why, if we can't get terminfo, we shouldn't try to print
|
|
|
|
// colors.
|
|
|
|
return false;
|
|
|
|
|
2013-08-12 17:49:17 +08:00
|
|
|
// Test whether the terminal as set up supports color output. How to do this
|
|
|
|
// isn't entirely obvious. We can use the curses routine 'has_colors' but it
|
|
|
|
// would be nice to avoid a dependency on curses proper when we can make do
|
|
|
|
// with a minimal terminfo parsing library. Also, we don't really care whether
|
|
|
|
// the terminal supports the curses-specific color changing routines, merely
|
|
|
|
// if it will interpret ANSI color escape codes in a reasonable way. Thus, the
|
|
|
|
// strategy here is just to query the baseline colors capability and if it
|
|
|
|
// supports colors at all to assume it will translate the escape codes into
|
|
|
|
// whatever range of colors it does support. We can add more detailed tests
|
|
|
|
// here if users report them as necessary.
|
|
|
|
//
|
|
|
|
// The 'tigetnum' routine returns -2 or -1 on errors, and might return 0 if
|
|
|
|
// the terminfo says that no colors are supported.
|
2013-08-18 09:20:32 +08:00
|
|
|
bool HasColors = tigetnum(const_cast<char *>("colors")) > 0;
|
|
|
|
|
|
|
|
// Now extract the structure allocated by setupterm and free its memory
|
|
|
|
// through a really silly dance.
|
2014-04-28 12:05:08 +08:00
|
|
|
struct term *termp = set_curterm((struct term *)nullptr);
|
2013-08-18 09:20:32 +08:00
|
|
|
(void)del_curterm(termp); // Drop any errors here.
|
|
|
|
|
|
|
|
// Return true if we found a color capabilities for the current terminal.
|
|
|
|
if (HasColors)
|
2013-08-07 16:47:36 +08:00
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Otherwise, be conservative.
|
2009-06-04 15:09:50 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-07-21 02:29:38 +08:00
|
|
|
bool Process::FileDescriptorHasColors(int fd) {
|
|
|
|
// A file descriptor has colors if it is displayed and the terminal has
|
|
|
|
// colors.
|
2013-08-07 16:47:36 +08:00
|
|
|
return FileDescriptorIsDisplayed(fd) && terminalHasColors(fd);
|
2012-07-21 02:29:38 +08:00
|
|
|
}
|
|
|
|
|
2009-06-04 15:09:50 +08:00
|
|
|
bool Process::StandardOutHasColors() {
|
2012-07-21 02:29:38 +08:00
|
|
|
return FileDescriptorHasColors(STDOUT_FILENO);
|
2009-06-04 15:09:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Process::StandardErrHasColors() {
|
2012-07-21 02:29:38 +08:00
|
|
|
return FileDescriptorHasColors(STDERR_FILENO);
|
2009-06-04 15:09:50 +08:00
|
|
|
}
|
|
|
|
|
2013-09-11 08:36:48 +08:00
|
|
|
void Process::UseANSIEscapeCodes(bool /*enable*/) {
|
|
|
|
// No effect.
|
|
|
|
}
|
|
|
|
|
2009-06-04 15:09:50 +08:00
|
|
|
bool Process::ColorNeedsFlush() {
|
|
|
|
// No, we use ANSI escape sequences.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *Process::OutputColor(char code, bool bold, bool bg) {
|
|
|
|
return colorcodes[bg?1:0][bold?1:0][code&7];
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *Process::OutputBold(bool bg) {
|
|
|
|
return "\033[1m";
|
|
|
|
}
|
|
|
|
|
2012-04-16 16:56:50 +08:00
|
|
|
const char *Process::OutputReverse() {
|
|
|
|
return "\033[7m";
|
|
|
|
}
|
|
|
|
|
2009-06-04 15:09:50 +08:00
|
|
|
const char *Process::ResetColor() {
|
|
|
|
return "\033[0m";
|
|
|
|
}
|
2012-05-06 16:24:18 +08:00
|
|
|
|
Fix configure to find arc4random via header files.
ISSUE:
On Ubuntu 12.04 LTS, arc4random is provided by libbsd.so, which is a
transitive dependency of libedit. If a system had libedit on it that
was implemented in terms of libbsd.so, then the arc4random test,
previously implemented as a linker test, would succeed with -ledit.
However, on Ubuntu this would also require a #include <bsd/stdlib.h>.
This caused a build breakage on configure-based Ubuntu 12.04 with
libedit installed.
FIX:
This fix changes configure to test for arc4random by searching for it
in the standard header files. On Ubuntu 12.04, this test now properly
fails to find arc4random as it is not defined in the default header
locations. It also tweaks the #define names to match the output of the
header check command, which is slightly different than the linker
function check #defines.
I tested the following scenarios:
(1) Ubuntu 12.04 without the libedit package [did not find arc4random,
as expected]
(2) Ubuntu 12.04 with libedit package [properly did not find
arc4random, as expected]
(3) Ubuntu 12.04 with most recent libedit, custom built, and not
dependent on libbsd.so [properly did not find arc4random, as
expected].
(4) FreeBSD 10.0B1 [properly found arc4random, as expected]
llvm-svn: 200819
2014-02-05 13:04:36 +08:00
|
|
|
#if !defined(HAVE_DECL_ARC4RANDOM) || !HAVE_DECL_ARC4RANDOM
|
2012-05-06 16:24:24 +08:00
|
|
|
static unsigned GetRandomNumberSeed() {
|
2012-05-09 04:38:00 +08:00
|
|
|
// Attempt to get the initial seed from /dev/urandom, if possible.
|
|
|
|
if (FILE *RandomSource = ::fopen("/dev/urandom", "r")) {
|
|
|
|
unsigned seed;
|
|
|
|
int count = ::fread((void *)&seed, sizeof(seed), 1, RandomSource);
|
2012-05-06 16:24:24 +08:00
|
|
|
::fclose(RandomSource);
|
2012-05-09 04:38:00 +08:00
|
|
|
|
|
|
|
// Return the seed if the read was successful.
|
|
|
|
if (count == 1)
|
|
|
|
return seed;
|
2012-05-06 16:24:24 +08:00
|
|
|
}
|
2012-05-09 04:38:00 +08:00
|
|
|
|
|
|
|
// Otherwise, swizzle the current time and the process ID to form a reasonable
|
|
|
|
// seed.
|
2012-12-31 19:45:20 +08:00
|
|
|
TimeValue Now = TimeValue::now();
|
2012-05-09 04:38:00 +08:00
|
|
|
return hash_combine(Now.seconds(), Now.nanoseconds(), ::getpid());
|
2012-05-06 16:24:24 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-05-06 16:24:18 +08:00
|
|
|
unsigned llvm::sys::Process::GetRandomNumber() {
|
Fix configure to find arc4random via header files.
ISSUE:
On Ubuntu 12.04 LTS, arc4random is provided by libbsd.so, which is a
transitive dependency of libedit. If a system had libedit on it that
was implemented in terms of libbsd.so, then the arc4random test,
previously implemented as a linker test, would succeed with -ledit.
However, on Ubuntu this would also require a #include <bsd/stdlib.h>.
This caused a build breakage on configure-based Ubuntu 12.04 with
libedit installed.
FIX:
This fix changes configure to test for arc4random by searching for it
in the standard header files. On Ubuntu 12.04, this test now properly
fails to find arc4random as it is not defined in the default header
locations. It also tweaks the #define names to match the output of the
header check command, which is slightly different than the linker
function check #defines.
I tested the following scenarios:
(1) Ubuntu 12.04 without the libedit package [did not find arc4random,
as expected]
(2) Ubuntu 12.04 with libedit package [properly did not find
arc4random, as expected]
(3) Ubuntu 12.04 with most recent libedit, custom built, and not
dependent on libbsd.so [properly did not find arc4random, as
expected].
(4) FreeBSD 10.0B1 [properly found arc4random, as expected]
llvm-svn: 200819
2014-02-05 13:04:36 +08:00
|
|
|
#if defined(HAVE_DECL_ARC4RANDOM) && HAVE_DECL_ARC4RANDOM
|
2012-05-06 16:24:18 +08:00
|
|
|
return arc4random();
|
|
|
|
#else
|
2012-05-06 16:24:24 +08:00
|
|
|
static int x = (::srand(GetRandomNumberSeed()), 0);
|
|
|
|
(void)x;
|
2012-05-06 16:24:18 +08:00
|
|
|
return ::rand();
|
|
|
|
#endif
|
|
|
|
}
|