blob: 4e1bd5db142cdc6c2856ddec5d9e14896c971f05 [file] [log] [blame]
Reid Spencer33b9d772004-09-11 04:56:56 +00001//===- Unix/Process.cpp - Unix Process Implementation --------- -*- C++ -*-===//
Michael J. Spencer447762d2010-11-29 18:16:10 +00002//
Reid Spencer33b9d772004-09-11 04:56:56 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Michael J. Spencer447762d2010-11-29 18:16:10 +00007//
Reid Spencer33b9d772004-09-11 04:56:56 +00008//===----------------------------------------------------------------------===//
9//
10// This file provides the generic Unix implementation of the Process class.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencerac38f3a2004-12-20 00:59:28 +000014#include "Unix.h"
Daniel Dunbar5f1c9562012-05-08 20:38:00 +000015#include "llvm/ADT/Hashing.h"
16#include "llvm/Support/TimeValue.h"
Reid Spencerac38f3a2004-12-20 00:59:28 +000017#ifdef HAVE_SYS_TIME_H
18#include <sys/time.h>
19#endif
20#ifdef HAVE_SYS_RESOURCE_H
21#include <sys/resource.h>
22#endif
Edward O'Callaghan2c7457c2009-11-02 03:20:57 +000023// DragonFly BSD has deprecated <malloc.h> for <stdlib.h> instead,
24// Unix.h includes this for us already.
25#if defined(HAVE_MALLOC_H) && !defined(__DragonFly__)
Reid Spencerac38f3a2004-12-20 00:59:28 +000026#include <malloc.h>
27#endif
Chris Lattner698fa762005-11-14 07:00:29 +000028#ifdef HAVE_MALLOC_MALLOC_H
29#include <malloc/malloc.h>
30#endif
Douglas Gregor15436612009-05-11 18:05:52 +000031#ifdef HAVE_SYS_IOCTL_H
32# include <sys/ioctl.h>
33#endif
Douglas Gregorb81294d2009-05-18 17:21:34 +000034#ifdef HAVE_TERMIOS_H
35# include <termios.h>
36#endif
Reid Spencer33b9d772004-09-11 04:56:56 +000037
38//===----------------------------------------------------------------------===//
39//=== WARNING: Implementation here must contain only generic UNIX code that
40//=== is guaranteed to work on *all* UNIX variants.
41//===----------------------------------------------------------------------===//
42
Chris Lattner2f107cf2006-09-14 06:01:41 +000043using namespace llvm;
Reid Spencer33b9d772004-09-11 04:56:56 +000044using namespace sys;
45
Michael J. Spencer447762d2010-11-29 18:16:10 +000046unsigned
47Process::GetPageSize()
Reid Spencerac38f3a2004-12-20 00:59:28 +000048{
Jay Foadc1fca9fb2009-05-23 17:57:59 +000049#if defined(__CYGWIN__)
50 // On Cygwin, getpagesize() returns 64k but the page size for the purposes of
51 // memory protection and mmap() is 4k.
52 // See http://www.cygwin.com/ml/cygwin/2009-01/threads.html#00492
Owen Andersona83e8682009-08-19 21:48:34 +000053 const int page_size = 0x1000;
Jay Foadc1fca9fb2009-05-23 17:57:59 +000054#elif defined(HAVE_GETPAGESIZE)
Owen Andersona83e8682009-08-19 21:48:34 +000055 const int page_size = ::getpagesize();
Reid Spencerac38f3a2004-12-20 00:59:28 +000056#elif defined(HAVE_SYSCONF)
Owen Andersona83e8682009-08-19 21:48:34 +000057 long page_size = ::sysconf(_SC_PAGE_SIZE);
Reid Spencerac38f3a2004-12-20 00:59:28 +000058#else
59#warning Cannot get the page size on this machine
60#endif
Reid Spencer33b9d772004-09-11 04:56:56 +000061 return static_cast<unsigned>(page_size);
62}
63
Chris Lattner698fa762005-11-14 07:00:29 +000064size_t Process::GetMallocUsage() {
Reid Spencer1cf74ce2004-12-20 16:06:44 +000065#if defined(HAVE_MALLINFO)
Reid Spencerac38f3a2004-12-20 00:59:28 +000066 struct mallinfo mi;
67 mi = ::mallinfo();
68 return mi.uordblks;
Chris Lattner16cbc6a2005-11-14 07:27:56 +000069#elif defined(HAVE_MALLOC_ZONE_STATISTICS) && defined(HAVE_MALLOC_MALLOC_H)
70 malloc_statistics_t Stats;
71 malloc_zone_statistics(malloc_default_zone(), &Stats);
72 return Stats.size_in_use; // darwin
Reid Spencer1cf74ce2004-12-20 16:06:44 +000073#elif defined(HAVE_SBRK)
Reid Spencerac38f3a2004-12-20 00:59:28 +000074 // Note this is only an approximation and more closely resembles
75 // the value returned by mallinfo in the arena field.
Chris Lattner698fa762005-11-14 07:00:29 +000076 static char *StartOfMemory = reinterpret_cast<char*>(::sbrk(0));
77 char *EndOfMemory = (char*)sbrk(0);
78 if (EndOfMemory != ((char*)-1) && StartOfMemory != ((char*)-1))
79 return EndOfMemory - StartOfMemory;
Reid Spencerac38f3a2004-12-20 00:59:28 +000080 else
81 return 0;
82#else
83#warning Cannot get malloc info on this platform
84 return 0;
85#endif
86}
87
Jeff Cohen1a26d152005-01-08 20:15:57 +000088size_t
Reid Spencerac38f3a2004-12-20 00:59:28 +000089Process::GetTotalMemoryUsage()
90{
Reid Spencer1cf74ce2004-12-20 16:06:44 +000091#if defined(HAVE_MALLINFO)
Reid Spencerac38f3a2004-12-20 00:59:28 +000092 struct mallinfo mi = ::mallinfo();
93 return mi.uordblks + mi.hblkhd;
Chris Lattner16cbc6a2005-11-14 07:27:56 +000094#elif defined(HAVE_MALLOC_ZONE_STATISTICS) && defined(HAVE_MALLOC_MALLOC_H)
95 malloc_statistics_t Stats;
96 malloc_zone_statistics(malloc_default_zone(), &Stats);
97 return Stats.size_allocated; // darwin
Edward O'Callaghan8227b052009-10-12 04:57:20 +000098#elif defined(HAVE_GETRUSAGE) && !defined(__HAIKU__)
Reid Spencer8005e662004-12-20 16:33:37 +000099 struct rusage usage;
100 ::getrusage(RUSAGE_SELF, &usage);
101 return usage.ru_maxrss;
Reid Spencerac38f3a2004-12-20 00:59:28 +0000102#else
103#warning Cannot get total memory size on this platform
104 return 0;
105#endif
106}
107
108void
Michael J. Spencer447762d2010-11-29 18:16:10 +0000109Process::GetTimeUsage(TimeValue& elapsed, TimeValue& user_time,
Reid Spencerac38f3a2004-12-20 00:59:28 +0000110 TimeValue& sys_time)
111{
112 elapsed = TimeValue::now();
Chris Lattner227d4422006-05-12 18:20:39 +0000113#if defined(HAVE_GETRUSAGE)
Reid Spencerac38f3a2004-12-20 00:59:28 +0000114 struct rusage usage;
115 ::getrusage(RUSAGE_SELF, &usage);
Michael J. Spencer447762d2010-11-29 18:16:10 +0000116 user_time = TimeValue(
117 static_cast<TimeValue::SecondsType>( usage.ru_utime.tv_sec ),
118 static_cast<TimeValue::NanoSecondsType>( usage.ru_utime.tv_usec *
Reid Spencerd4c69882004-12-20 21:43:33 +0000119 TimeValue::NANOSECONDS_PER_MICROSECOND ) );
Michael J. Spencer447762d2010-11-29 18:16:10 +0000120 sys_time = TimeValue(
121 static_cast<TimeValue::SecondsType>( usage.ru_stime.tv_sec ),
122 static_cast<TimeValue::NanoSecondsType>( usage.ru_stime.tv_usec *
Reid Spencerd4c69882004-12-20 21:43:33 +0000123 TimeValue::NANOSECONDS_PER_MICROSECOND ) );
Reid Spencerac38f3a2004-12-20 00:59:28 +0000124#else
125#warning Cannot get usage times on this platform
126 user_time.seconds(0);
127 user_time.microseconds(0);
128 sys_time.seconds(0);
129 sys_time.microseconds(0);
130#endif
131}
132
Chris Lattner2f107cf2006-09-14 06:01:41 +0000133int Process::GetCurrentUserId() {
Reid Spencer2d45e252005-04-21 16:12:57 +0000134 return getuid();
135}
136
Chris Lattner2f107cf2006-09-14 06:01:41 +0000137int Process::GetCurrentGroupId() {
Reid Spencer2d45e252005-04-21 16:12:57 +0000138 return getgid();
139}
140
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000141#if defined(HAVE_MACH_MACH_H) && !defined(__GNU__)
Nate Begeman48405152008-04-12 00:47:46 +0000142#include <mach/mach.h>
143#endif
144
Reid Spencercf15b872004-12-27 06:17:27 +0000145// Some LLVM programs such as bugpoint produce core files as a normal part of
146// their operation. To prevent the disk from filling up, this function
147// does what's necessary to prevent their generation.
148void Process::PreventCoreFiles() {
149#if HAVE_SETRLIMIT
150 struct rlimit rlim;
151 rlim.rlim_cur = rlim.rlim_max = 0;
Chris Lattnerf64397b2006-05-14 18:53:09 +0000152 setrlimit(RLIMIT_CORE, &rlim);
Reid Spencercf15b872004-12-27 06:17:27 +0000153#endif
Chris Lattner2f107cf2006-09-14 06:01:41 +0000154
Sylvestre Ledru14ada942012-04-11 15:35:36 +0000155#if defined(HAVE_MACH_MACH_H) && !defined(__GNU__)
Nate Begeman48405152008-04-12 00:47:46 +0000156 // Disable crash reporting on Mac OS X 10.0-10.4
157
158 // get information about the original set of exception ports for the task
159 mach_msg_type_number_t Count = 0;
160 exception_mask_t OriginalMasks[EXC_TYPES_COUNT];
161 exception_port_t OriginalPorts[EXC_TYPES_COUNT];
162 exception_behavior_t OriginalBehaviors[EXC_TYPES_COUNT];
163 thread_state_flavor_t OriginalFlavors[EXC_TYPES_COUNT];
Michael J. Spencer447762d2010-11-29 18:16:10 +0000164 kern_return_t err =
Nate Begeman48405152008-04-12 00:47:46 +0000165 task_get_exception_ports(mach_task_self(), EXC_MASK_ALL, OriginalMasks,
166 &Count, OriginalPorts, OriginalBehaviors,
167 OriginalFlavors);
168 if (err == KERN_SUCCESS) {
169 // replace each with MACH_PORT_NULL.
170 for (unsigned i = 0; i != Count; ++i)
Michael J. Spencer447762d2010-11-29 18:16:10 +0000171 task_set_exception_ports(mach_task_self(), OriginalMasks[i],
Nate Begeman48405152008-04-12 00:47:46 +0000172 MACH_PORT_NULL, OriginalBehaviors[i],
173 OriginalFlavors[i]);
174 }
175
176 // Disable crash reporting on Mac OS X 10.5
Nate Begemanf8be3832008-03-31 22:19:25 +0000177 signal(SIGABRT, _exit);
178 signal(SIGILL, _exit);
179 signal(SIGFPE, _exit);
180 signal(SIGSEGV, _exit);
181 signal(SIGBUS, _exit);
Chris Lattner2f107cf2006-09-14 06:01:41 +0000182#endif
Reid Spencercf15b872004-12-27 06:17:27 +0000183}
Reid Spencerac38f3a2004-12-20 00:59:28 +0000184
Reid Spencer6f802ba2005-01-01 22:29:26 +0000185bool Process::StandardInIsUserInput() {
Dan Gohmane5929232009-09-11 20:46:33 +0000186 return FileDescriptorIsDisplayed(STDIN_FILENO);
Reid Spencer6f802ba2005-01-01 22:29:26 +0000187}
188
189bool Process::StandardOutIsDisplayed() {
Dan Gohmane5929232009-09-11 20:46:33 +0000190 return FileDescriptorIsDisplayed(STDOUT_FILENO);
Reid Spencer6f802ba2005-01-01 22:29:26 +0000191}
192
193bool Process::StandardErrIsDisplayed() {
Dan Gohmane5929232009-09-11 20:46:33 +0000194 return FileDescriptorIsDisplayed(STDERR_FILENO);
195}
196
197bool Process::FileDescriptorIsDisplayed(int fd) {
Reid Spencer6f802ba2005-01-01 22:29:26 +0000198#if HAVE_ISATTY
Dan Gohmane5929232009-09-11 20:46:33 +0000199 return isatty(fd);
Duncan Sands44d423a2009-09-06 10:53:22 +0000200#else
Reid Spencer6f802ba2005-01-01 22:29:26 +0000201 // If we don't have isatty, just return false.
202 return false;
Duncan Sands44d423a2009-09-06 10:53:22 +0000203#endif
Reid Spencer6f802ba2005-01-01 22:29:26 +0000204}
Douglas Gregor15436612009-05-11 18:05:52 +0000205
206static unsigned getColumns(int FileID) {
207 // If COLUMNS is defined in the environment, wrap to that many columns.
208 if (const char *ColumnsStr = std::getenv("COLUMNS")) {
209 int Columns = std::atoi(ColumnsStr);
210 if (Columns > 0)
211 return Columns;
212 }
213
214 unsigned Columns = 0;
215
Douglas Gregorb81294d2009-05-18 17:21:34 +0000216#if defined(HAVE_SYS_IOCTL_H) && defined(HAVE_TERMIOS_H)
Douglas Gregor15436612009-05-11 18:05:52 +0000217 // Try to determine the width of the terminal.
218 struct winsize ws;
219 if (ioctl(FileID, TIOCGWINSZ, &ws) == 0)
220 Columns = ws.ws_col;
221#endif
222
223 return Columns;
224}
225
226unsigned Process::StandardOutColumns() {
227 if (!StandardOutIsDisplayed())
228 return 0;
229
230 return getColumns(1);
231}
232
233unsigned Process::StandardErrColumns() {
234 if (!StandardErrIsDisplayed())
235 return 0;
236
237 return getColumns(2);
238}
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000239
240static bool terminalHasColors() {
241 if (const char *term = std::getenv("TERM")) {
242 // Most modern terminals support ANSI escape sequences for colors.
243 // We could check terminfo, or have a list of known terms that support
244 // colors, but that would be overkill.
245 // The user can always ask for no colors by setting TERM to dumb, or
246 // using a commandline flag.
247 return strcmp(term, "dumb") != 0;
248 }
249 return false;
250}
251
252bool Process::StandardOutHasColors() {
253 if (!StandardOutIsDisplayed())
254 return false;
255 return terminalHasColors();
256}
257
258bool Process::StandardErrHasColors() {
259 if (!StandardErrIsDisplayed())
260 return false;
261 return terminalHasColors();
262}
263
264bool Process::ColorNeedsFlush() {
265 // No, we use ANSI escape sequences.
266 return false;
267}
268
269#define COLOR(FGBG, CODE, BOLD) "\033[0;" BOLD FGBG CODE "m"
270
271#define ALLCOLORS(FGBG,BOLD) {\
272 COLOR(FGBG, "0", BOLD),\
273 COLOR(FGBG, "1", BOLD),\
274 COLOR(FGBG, "2", BOLD),\
275 COLOR(FGBG, "3", BOLD),\
276 COLOR(FGBG, "4", BOLD),\
277 COLOR(FGBG, "5", BOLD),\
278 COLOR(FGBG, "6", BOLD),\
279 COLOR(FGBG, "7", BOLD)\
280 }
281
Nuno Lopes129819d2009-12-23 17:48:10 +0000282static const char colorcodes[2][2][8][10] = {
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000283 { ALLCOLORS("3",""), ALLCOLORS("3","1;") },
284 { ALLCOLORS("4",""), ALLCOLORS("4","1;") }
285};
286
287const char *Process::OutputColor(char code, bool bold, bool bg) {
288 return colorcodes[bg?1:0][bold?1:0][code&7];
289}
290
291const char *Process::OutputBold(bool bg) {
292 return "\033[1m";
293}
294
Benjamin Kramer13d16f32012-04-16 08:56:50 +0000295const char *Process::OutputReverse() {
296 return "\033[7m";
297}
298
Torok Edwin9b5a47f2009-06-04 07:09:50 +0000299const char *Process::ResetColor() {
300 return "\033[0m";
301}
NAKAMURA Takumi54acb282012-05-06 08:24:18 +0000302
NAKAMURA Takumi7bec7412012-05-06 08:24:24 +0000303#if !defined(HAVE_ARC4RANDOM)
304static unsigned GetRandomNumberSeed() {
Daniel Dunbar5f1c9562012-05-08 20:38:00 +0000305 // Attempt to get the initial seed from /dev/urandom, if possible.
306 if (FILE *RandomSource = ::fopen("/dev/urandom", "r")) {
307 unsigned seed;
308 int count = ::fread((void *)&seed, sizeof(seed), 1, RandomSource);
NAKAMURA Takumi7bec7412012-05-06 08:24:24 +0000309 ::fclose(RandomSource);
Daniel Dunbar5f1c9562012-05-08 20:38:00 +0000310
311 // Return the seed if the read was successful.
312 if (count == 1)
313 return seed;
NAKAMURA Takumi7bec7412012-05-06 08:24:24 +0000314 }
Daniel Dunbar5f1c9562012-05-08 20:38:00 +0000315
316 // Otherwise, swizzle the current time and the process ID to form a reasonable
317 // seed.
318 TimeValue Now = llvm::TimeValue::now();
319 return hash_combine(Now.seconds(), Now.nanoseconds(), ::getpid());
NAKAMURA Takumi7bec7412012-05-06 08:24:24 +0000320}
321#endif
322
NAKAMURA Takumi54acb282012-05-06 08:24:18 +0000323unsigned llvm::sys::Process::GetRandomNumber() {
324#if defined(HAVE_ARC4RANDOM)
325 return arc4random();
326#else
NAKAMURA Takumi7bec7412012-05-06 08:24:24 +0000327 static int x = (::srand(GetRandomNumberSeed()), 0);
328 (void)x;
NAKAMURA Takumi54acb282012-05-06 08:24:18 +0000329 return ::rand();
330#endif
331}