Merge pull request #1624 from esdrubal/getprocesstimes
[mono.git] / mono / utils / mono-proclib.c
1 /*
2  * Copyright 2008-2011 Novell Inc
3  * Copyright 2011 Xamarin Inc
4  */
5
6 #include "config.h"
7 #include "utils/mono-proclib.h"
8 #include "utils/mono-time.h"
9
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <string.h>
13 #include <fcntl.h>
14 #ifdef HAVE_UNISTD_H
15 #include <unistd.h>
16 #endif
17
18 #ifdef HOST_WIN32
19 #include <windows.h>
20 #include <process.h>
21 #endif
22
23 #if defined(_POSIX_VERSION)
24 #include <sys/errno.h>
25 #include <sys/param.h>
26 #ifdef HAVE_SYS_TYPES_H
27 #include <sys/types.h>
28 #endif
29 #ifdef HAVE_SYS_SYSCTL_H
30 #include <sys/sysctl.h>
31 #endif
32 #include <sys/resource.h>
33 #endif
34 #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
35 #include <sys/proc.h>
36 #if defined(__APPLE__)
37 #include <mach/mach.h>
38 #endif
39 #ifdef HAVE_SYS_USER_H
40 #include <sys/user.h>
41 #endif
42 #ifdef HAVE_STRUCT_KINFO_PROC_KP_PROC
43 #    define kinfo_pid_member kp_proc.p_pid
44 #    define kinfo_name_member kp_proc.p_comm
45 #elif defined(__OpenBSD__)
46 #    define kinfo_pid_member p_pid
47 #    define kinfo_name_member p_comm
48 #else
49 #define kinfo_pid_member ki_pid
50 #define kinfo_name_member ki_comm
51 #endif
52 #define USE_SYSCTL 1
53 #endif
54
55 /**
56  * mono_process_list:
57  * @size: a pointer to a location where the size of the returned array is stored
58  *
59  * Return an array of pid values for the processes currently running on the system.
60  * The size of the array is stored in @size.
61  */
62 gpointer*
63 mono_process_list (int *size)
64 {
65 #if USE_SYSCTL
66         int res, i;
67 #ifdef KERN_PROC2
68         int mib [6];
69         size_t data_len = sizeof (struct kinfo_proc2) * 400;
70         struct kinfo_proc2 *processes = malloc (data_len);
71 #else
72         int mib [4];
73         size_t data_len = sizeof (struct kinfo_proc) * 16;
74         struct kinfo_proc *processes;
75         int limit = 8;
76 #endif /* KERN_PROC2 */
77         void **buf = NULL;
78
79         if (size)
80                 *size = 0;
81
82 #ifdef KERN_PROC2
83         if (!processes)
84                 return NULL;
85
86         mib [0] = CTL_KERN;
87         mib [1] = KERN_PROC2;
88         mib [2] = KERN_PROC_ALL;
89         mib [3] = 0;
90         mib [4] = sizeof(struct kinfo_proc2);
91         mib [5] = 400; /* XXX */
92
93         res = sysctl (mib, 6, processes, &data_len, NULL, 0);
94         if (res < 0) {
95                 free (processes);
96                 return NULL;
97         }
98 #else
99         processes = NULL;
100         while (limit) {
101                 mib [0] = CTL_KERN;
102                 mib [1] = KERN_PROC;
103                 mib [2] = KERN_PROC_ALL;
104                 mib [3] = 0;
105
106                 res = sysctl (mib, 4, NULL, &data_len, NULL, 0);
107                 if (res)
108                         return NULL;
109                 processes = malloc (data_len);
110                 res = sysctl (mib, 4, processes, &data_len, NULL, 0);
111                 if (res < 0) {
112                         free (processes);
113                         if (errno != ENOMEM)
114                                 return NULL;
115                         limit --;
116                 } else {
117                         break;
118                 }
119         }
120 #endif /* KERN_PROC2 */
121
122 #ifdef KERN_PROC2
123         res = data_len/sizeof (struct kinfo_proc2);
124 #else
125         res = data_len/sizeof (struct kinfo_proc);
126 #endif /* KERN_PROC2 */
127         buf = g_realloc (buf, res * sizeof (void*));
128         for (i = 0; i < res; ++i)
129                 buf [i] = GINT_TO_POINTER (processes [i].kinfo_pid_member);
130         free (processes);
131         if (size)
132                 *size = res;
133         return buf;
134 #elif defined(__HAIKU__)
135         /* FIXME: Add back the code from 9185fcc305e43428d0f40f3ee37c8a405d41c9ae */
136         g_assert_not_reached ();
137         return NULL;
138 #else
139         const char *name;
140         void **buf = NULL;
141         int count = 0;
142         int i = 0;
143         GDir *dir = g_dir_open ("/proc/", 0, NULL);
144         if (!dir) {
145                 if (size)
146                         *size = 0;
147                 return NULL;
148         }
149         while ((name = g_dir_read_name (dir))) {
150                 int pid;
151                 char *nend;
152                 pid = strtol (name, &nend, 10);
153                 if (pid <= 0 || nend == name || *nend)
154                         continue;
155                 if (i >= count) {
156                         if (!count)
157                                 count = 16;
158                         else
159                                 count *= 2;
160                         buf = g_realloc (buf, count * sizeof (void*));
161                 }
162                 buf [i++] = GINT_TO_POINTER (pid);
163         }
164         g_dir_close (dir);
165         if (size)
166                 *size = i;
167         return buf;
168 #endif
169 }
170
171 static G_GNUC_UNUSED char*
172 get_pid_status_item_buf (int pid, const char *item, char *rbuf, int blen, MonoProcessError *error)
173 {
174         char buf [256];
175         char *s;
176         FILE *f;
177         int len = strlen (item);
178
179         g_snprintf (buf, sizeof (buf), "/proc/%d/status", pid);
180         f = fopen (buf, "r");
181         if (!f) {
182                 if (error)
183                         *error = MONO_PROCESS_ERROR_NOT_FOUND;
184                 return NULL;
185         }
186         while ((s = fgets (buf, blen, f))) {
187                 if (*item != *buf)
188                         continue;
189                 if (strncmp (buf, item, len))
190                         continue;
191                 s = buf + len;
192                 while (g_ascii_isspace (*s)) s++;
193                 if (*s++ != ':')
194                         continue;
195                 while (g_ascii_isspace (*s)) s++;
196                 fclose (f);
197                 len = strlen (s);
198                 strncpy (rbuf, s, MIN (len, blen));
199                 rbuf [MIN (len, blen) - 1] = 0;
200                 if (error)
201                         *error = MONO_PROCESS_ERROR_NONE;
202                 return rbuf;
203         }
204         fclose (f);
205         if (error)
206                 *error = MONO_PROCESS_ERROR_OTHER;
207         return NULL;
208 }
209
210 #if USE_SYSCTL
211
212 #ifdef KERN_PROC2
213 #define KINFO_PROC struct kinfo_proc2
214 #else
215 #define KINFO_PROC struct kinfo_proc
216 #endif
217
218 static gboolean
219 sysctl_kinfo_proc (gpointer pid, KINFO_PROC* processi)
220 {
221         int res;
222         size_t data_len = sizeof (KINFO_PROC);
223
224 #ifdef KERN_PROC2
225         int mib [6];
226         mib [0] = CTL_KERN;
227         mib [1] = KERN_PROC2;
228         mib [2] = KERN_PROC_PID;
229         mib [3] = GPOINTER_TO_UINT (pid);
230         mib [4] = sizeof(KINFO_PROC);
231         mib [5] = 400; /* XXX */
232
233         res = sysctl (mib, 6, processi, &data_len, NULL, 0);
234 #else
235         int mib [4];
236         mib [0] = CTL_KERN;
237         mib [1] = KERN_PROC;
238         mib [2] = KERN_PROC_PID;
239         mib [3] = GPOINTER_TO_UINT (pid);
240
241         res = sysctl (mib, 4, processi, &data_len, NULL, 0);
242 #endif /* KERN_PROC2 */
243
244         if (res < 0 || data_len != sizeof (KINFO_PROC))
245                 return FALSE;
246
247         return TRUE;
248 }
249 #endif /* USE_SYSCTL */
250
251 /**
252  * mono_process_get_name:
253  * @pid: pid of the process
254  * @buf: byte buffer where to store the name of the prcoess
255  * @len: size of the buffer @buf
256  *
257  * Return the name of the process identified by @pid, storing it
258  * inside @buf for a maximum of len bytes (including the terminating 0).
259  */
260 char*
261 mono_process_get_name (gpointer pid, char *buf, int len)
262 {
263 #if USE_SYSCTL
264         KINFO_PROC processi;
265
266         memset (buf, 0, len);
267
268         if (sysctl_kinfo_proc (pid, &processi))
269                 strncpy (buf, processi.kinfo_name_member, len - 1);
270
271         return buf;
272 #else
273         char fname [128];
274         FILE *file;
275         char *p;
276         int r;
277         sprintf (fname, "/proc/%d/cmdline", GPOINTER_TO_INT (pid));
278         buf [0] = 0;
279         file = fopen (fname, "r");
280         if (!file)
281                 return buf;
282         r = fread (buf, 1, len - 1, file);
283         fclose (file);
284         buf [r] = 0;
285         p = strrchr (buf, '/');
286         if (p)
287                 return p + 1;
288         if (r == 0) {
289                 return get_pid_status_item_buf (GPOINTER_TO_INT (pid), "Name", buf, len, NULL);
290         }
291         return buf;
292 #endif
293 }
294
295 void
296 mono_process_get_times (gpointer pid, gint64 *start_time, gint64 *user_time, gint64 *kernel_time)
297 {
298         if (user_time)
299                 *user_time = mono_process_get_data (pid, MONO_PROCESS_USER_TIME);
300
301         if (kernel_time)
302                 *kernel_time = mono_process_get_data (pid, MONO_PROCESS_SYSTEM_TIME);
303
304         if (start_time) {
305                 *start_time = 0;
306
307 #if USE_SYSCTL
308                 {
309                         KINFO_PROC processi;
310
311                         if (sysctl_kinfo_proc (pid, &processi))
312                                 *start_time = mono_100ns_datetime_from_timeval (processi.kp_proc.p_starttime);
313                 }
314 #endif
315
316                 if (*start_time == 0) {
317                         static guint64 boot_time = 0;
318                         if (!boot_time)
319                                 boot_time = mono_100ns_datetime () - ((guint64)mono_msec_ticks ()) * 10000;
320
321                         *start_time = boot_time + mono_process_get_data (pid, MONO_PROCESS_ELAPSED);
322                 }
323         }
324 }
325
326 /*
327  * /proc/pid/stat format:
328  * pid (cmdname) S 
329  *      [0] ppid pgid sid tty_nr tty_pgrp flags min_flt cmin_flt maj_flt cmaj_flt
330  *      [10] utime stime cutime cstime prio nice threads 0 start_time vsize
331  *      [20] rss rsslim start_code end_code start_stack esp eip pending blocked sigign
332  *      [30] sigcatch wchan 0 0 exit_signal cpu rt_prio policy
333  */
334
335 #define RET_ERROR(err) do {     \
336                 if (error) *error = (err);      \
337                 return 0;                       \
338         } while (0)
339
340 static gint64
341 get_process_stat_item (int pid, int pos, int sum, MonoProcessError *error)
342 {
343 #if defined(__APPLE__) 
344         double process_user_time = 0, process_system_time = 0;//, process_percent = 0;
345         task_t task;
346         struct task_basic_info t_info;
347         mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT, th_count;
348         thread_array_t th_array;
349         size_t i;
350
351         if (task_for_pid(mach_task_self(), pid, &task) != KERN_SUCCESS)
352                 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND);
353
354         if (task_info(task, TASK_BASIC_INFO, (task_info_t)&t_info, &t_info_count) != KERN_SUCCESS) {
355                 mach_port_deallocate (mach_task_self (), task);
356                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
357         }
358         
359         if (task_threads(task, &th_array, &th_count) != KERN_SUCCESS) {
360                 mach_port_deallocate (mach_task_self (), task);
361                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
362         }
363                 
364         for (i = 0; i < th_count; i++) {
365                 double thread_user_time, thread_system_time;//, thread_percent;
366                 
367                 struct thread_basic_info th_info;
368                 mach_msg_type_number_t th_info_count = THREAD_BASIC_INFO_COUNT;
369                 if (thread_info(th_array[i], THREAD_BASIC_INFO, (thread_info_t)&th_info, &th_info_count) == KERN_SUCCESS) {
370                         thread_user_time = th_info.user_time.seconds + th_info.user_time.microseconds / 1e6;
371                         thread_system_time = th_info.system_time.seconds + th_info.system_time.microseconds / 1e6;
372                         //thread_percent = (double)th_info.cpu_usage / TH_USAGE_SCALE;
373                         
374                         process_user_time += thread_user_time;
375                         process_system_time += thread_system_time;
376                         //process_percent += th_percent;
377                 }
378         }
379         
380         for (i = 0; i < th_count; i++)
381                 mach_port_deallocate(task, th_array[i]);
382
383         mach_port_deallocate (mach_task_self (), task);
384
385         process_user_time += t_info.user_time.seconds + t_info.user_time.microseconds / 1e6;
386         process_system_time += t_info.system_time.seconds + t_info.system_time.microseconds / 1e6;
387     
388         if (pos == 10 && sum == TRUE)
389                 return (gint64)((process_user_time + process_system_time) * 10000000);
390         else if (pos == 10)
391                 return (gint64)(process_user_time * 10000000);
392         else if (pos == 11)
393                 return (gint64)(process_system_time * 10000000);
394                 
395         return 0;
396 #else
397         char buf [512];
398         char *s, *end;
399         FILE *f;
400         int len, i;
401         gint64 value;
402
403         g_snprintf (buf, sizeof (buf), "/proc/%d/stat", pid);
404         f = fopen (buf, "r");
405         if (!f)
406                 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND);
407         len = fread (buf, 1, sizeof (buf), f);
408         fclose (f);
409         if (len <= 0)
410                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
411         s = strchr (buf, ')');
412         if (!s)
413                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
414         s++;
415         while (g_ascii_isspace (*s)) s++;
416         if (!*s)
417                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
418         /* skip the status char */
419         while (*s && !g_ascii_isspace (*s)) s++;
420         if (!*s)
421                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
422         for (i = 0; i < pos; ++i) {
423                 while (g_ascii_isspace (*s)) s++;
424                 if (!*s)
425                         RET_ERROR (MONO_PROCESS_ERROR_OTHER);
426                 while (*s && !g_ascii_isspace (*s)) s++;
427                 if (!*s)
428                         RET_ERROR (MONO_PROCESS_ERROR_OTHER);
429         }
430         /* we are finally at the needed item */
431         value = strtoul (s, &end, 0);
432         /* add also the following value */
433         if (sum) {
434                 while (g_ascii_isspace (*s)) s++;
435                 if (!*s)
436                         RET_ERROR (MONO_PROCESS_ERROR_OTHER);
437                 value += strtoul (s, &end, 0);
438         }
439         if (error)
440                 *error = MONO_PROCESS_ERROR_NONE;
441         return value;
442 #endif
443 }
444
445 static int
446 get_user_hz (void)
447 {
448         static int user_hz = 0;
449         if (user_hz == 0) {
450 #ifdef _SC_CLK_TCK
451                 user_hz = sysconf (_SC_CLK_TCK);
452 #endif
453                 if (user_hz == 0)
454                         user_hz = 100;
455         }
456         return user_hz;
457 }
458
459 static gint64
460 get_process_stat_time (int pid, int pos, int sum, MonoProcessError *error)
461 {
462         gint64 val = get_process_stat_item (pid, pos, sum, error);
463 #if defined(__APPLE__)
464         return val;
465 #else
466         /* return 100ns ticks */
467         return (val * 10000000) / get_user_hz ();
468 #endif
469 }
470
471 static gint64
472 get_pid_status_item (int pid, const char *item, MonoProcessError *error, int multiplier)
473 {
474 #if defined(__APPLE__)
475         // ignore the multiplier
476         
477         gint64 ret;
478         task_t task;
479         struct task_basic_info t_info;
480         mach_msg_type_number_t th_count = TASK_BASIC_INFO_COUNT;
481
482         if (pid == getpid ()) {
483                 /* task_for_pid () doesn't work on ios, even for the current process */
484                 task = mach_task_self ();
485         } else {
486                 if (task_for_pid (mach_task_self (), pid, &task) != KERN_SUCCESS)
487                         RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND);
488         }
489         
490         if (task_info (task, TASK_BASIC_INFO, (task_info_t)&t_info, &th_count) != KERN_SUCCESS) {
491                 if (pid != getpid ())
492                         mach_port_deallocate (mach_task_self (), task);
493                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
494         }
495
496         if (strcmp (item, "VmRSS") == 0 || strcmp (item, "VmHWM") == 0 || strcmp (item, "VmData") == 0)
497                 ret = t_info.resident_size;
498         else if (strcmp (item, "VmSize") == 0 || strcmp (item, "VmPeak") == 0)
499                 ret = t_info.virtual_size;
500         else if (strcmp (item, "Threads") == 0)
501                 ret = th_count;
502         else
503                 ret = 0;
504
505         if (pid != getpid ())
506                 mach_port_deallocate (mach_task_self (), task);
507         
508         return ret;
509 #else
510         char buf [64];
511         char *s;
512
513         s = get_pid_status_item_buf (pid, item, buf, sizeof (buf), error);
514         if (s)
515                 return ((gint64) atol (s)) * multiplier;
516         return 0;
517 #endif
518 }
519
520 /**
521  * mono_process_get_data:
522  * @pid: pid of the process
523  * @data: description of data to return
524  *
525  * Return a data item of a process like user time, memory use etc,
526  * according to the @data argumet.
527  */
528 gint64
529 mono_process_get_data_with_error (gpointer pid, MonoProcessData data, MonoProcessError *error)
530 {
531         gint64 val;
532         int rpid = GPOINTER_TO_INT (pid);
533
534         if (error)
535                 *error = MONO_PROCESS_ERROR_OTHER;
536
537         switch (data) {
538         case MONO_PROCESS_NUM_THREADS:
539                 return get_pid_status_item (rpid, "Threads", error, 1);
540         case MONO_PROCESS_USER_TIME:
541                 return get_process_stat_time (rpid, 10, FALSE, error);
542         case MONO_PROCESS_SYSTEM_TIME:
543                 return get_process_stat_time (rpid, 11, FALSE, error);
544         case MONO_PROCESS_TOTAL_TIME:
545                 return get_process_stat_time (rpid, 10, TRUE, error);
546         case MONO_PROCESS_WORKING_SET:
547                 return get_pid_status_item (rpid, "VmRSS", error, 1024);
548         case MONO_PROCESS_WORKING_SET_PEAK:
549                 val = get_pid_status_item (rpid, "VmHWM", error, 1024);
550                 if (val == 0)
551                         val = get_pid_status_item (rpid, "VmRSS", error, 1024);
552                 return val;
553         case MONO_PROCESS_PRIVATE_BYTES:
554                 return get_pid_status_item (rpid, "VmData", error, 1024);
555         case MONO_PROCESS_VIRTUAL_BYTES:
556                 return get_pid_status_item (rpid, "VmSize", error, 1024);
557         case MONO_PROCESS_VIRTUAL_BYTES_PEAK:
558                 val = get_pid_status_item (rpid, "VmPeak", error, 1024);
559                 if (val == 0)
560                         val = get_pid_status_item (rpid, "VmSize", error, 1024);
561                 return val;
562         case MONO_PROCESS_FAULTS:
563                 return get_process_stat_item (rpid, 6, TRUE, error);
564         case MONO_PROCESS_ELAPSED:
565                 return get_process_stat_time (rpid, 18, FALSE, error);
566         case MONO_PROCESS_PPID:
567                 return get_process_stat_time (rpid, 0, FALSE, error);
568         case MONO_PROCESS_PAGED_BYTES:
569                 return get_pid_status_item (rpid, "VmSwap", error, 1024);
570
571                 /* Nothing yet */
572         case MONO_PROCESS_END:
573                 return 0;
574         }
575         return 0;
576 }
577
578 gint64
579 mono_process_get_data (gpointer pid, MonoProcessData data)
580 {
581         MonoProcessError error;
582         return mono_process_get_data_with_error (pid, data, &error);
583 }
584
585 int
586 mono_process_current_pid ()
587 {
588 #if defined(HAVE_UNISTD_H)
589         return (int) getpid ();
590 #elif defined(HOST_WIN32)
591         return (int) GetCurrentProcessId ();
592 #else
593 #error getpid
594 #endif
595 }
596
597 /**
598  * mono_cpu_count:
599  *
600  * Return the number of processors on the system.
601  */
602 int
603 mono_cpu_count (void)
604 {
605         int count = 0;
606 #ifdef PLATFORM_ANDROID
607         /* Android tries really hard to save power by powering off CPUs on SMP phones which
608          * means the normal way to query cpu count returns a wrong value with userspace API.
609          * Instead we use /sys entries to query the actual hardware CPU count.
610          */
611         char buffer[8] = {'\0'};
612         int present = open ("/sys/devices/system/cpu/present", O_RDONLY);
613         /* Format of the /sys entry is a cpulist of indexes which in the case
614          * of present is always of the form "0-(n-1)" when there is more than
615          * 1 core, n being the number of CPU cores in the system. Otherwise
616          * the value is simply 0
617          */
618         if (present != -1 && read (present, (char*)buffer, sizeof (buffer)) > 3)
619                 count = strtol (((char*)buffer) + 2, NULL, 10);
620         if (present != -1)
621                 close (present);
622         if (count > 0)
623                 return count + 1;
624 #endif
625 #ifdef _SC_NPROCESSORS_ONLN
626         count = sysconf (_SC_NPROCESSORS_ONLN);
627         if (count > 0)
628                 return count;
629 #endif
630 #ifdef USE_SYSCTL
631         {
632                 int mib [2];
633                 size_t len = sizeof (int);
634                 mib [0] = CTL_HW;
635                 mib [1] = HW_NCPU;
636                 if (sysctl (mib, 2, &count, &len, NULL, 0) == 0)
637                         return count;
638         }
639 #endif
640 #ifdef HOST_WIN32
641         {
642                 SYSTEM_INFO info;
643                 GetSystemInfo (&info);
644                 return info.dwNumberOfProcessors;
645         }
646 #endif
647         /* FIXME: warn */
648         return 1;
649 }
650
651 static void
652 get_cpu_times (int cpu_id, gint64 *user, gint64 *systemt, gint64 *irq, gint64 *sirq, gint64 *idle)
653 {
654         char buf [256];
655         char *s;
656         int hz = get_user_hz ();
657         guint64 user_ticks = 0, nice_ticks = 0, system_ticks = 0, idle_ticks = 0, irq_ticks = 0, sirq_ticks = 0;
658         FILE *f = fopen ("/proc/stat", "r");
659         if (!f)
660                 return;
661         if (cpu_id < 0)
662                 hz *= mono_cpu_count ();
663         while ((s = fgets (buf, sizeof (buf), f))) {
664                 char *data = NULL;
665                 if (cpu_id < 0 && strncmp (s, "cpu", 3) == 0 && g_ascii_isspace (s [3])) {
666                         data = s + 4;
667                 } else if (cpu_id >= 0 && strncmp (s, "cpu", 3) == 0 && strtol (s + 3, &data, 10) == cpu_id) {
668                         if (data == s + 3)
669                                 continue;
670                         data++;
671                 } else {
672                         continue;
673                 }
674                 
675                 user_ticks = strtoull (data, &data, 10);
676                 nice_ticks = strtoull (data, &data, 10);
677                 system_ticks = strtoull (data, &data, 10);
678                 idle_ticks = strtoull (data, &data, 10);
679                 /* iowait_ticks = strtoull (data, &data, 10); */
680                 irq_ticks = strtoull (data, &data, 10);
681                 sirq_ticks = strtoull (data, &data, 10);
682                 break;
683         }
684         fclose (f);
685
686         if (user)
687                 *user = (user_ticks + nice_ticks) * 10000000 / hz;
688         if (systemt)
689                 *systemt = (system_ticks) * 10000000 / hz;
690         if (irq)
691                 *irq = (irq_ticks) * 10000000 / hz;
692         if (sirq)
693                 *sirq = (sirq_ticks) * 10000000 / hz;
694         if (idle)
695                 *idle = (idle_ticks) * 10000000 / hz;
696 }
697
698 /**
699  * mono_cpu_get_data:
700  * @cpu_id: processor number or -1 to get a summary of all the processors
701  * @data: type of data to retrieve
702  *
703  * Get data about a processor on the system, like time spent in user space or idle time.
704  */
705 gint64
706 mono_cpu_get_data (int cpu_id, MonoCpuData data, MonoProcessError *error)
707 {
708         gint64 value = 0;
709
710         if (error)
711                 *error = MONO_PROCESS_ERROR_NONE;
712         switch (data) {
713         case MONO_CPU_USER_TIME:
714                 get_cpu_times (cpu_id, &value, NULL, NULL, NULL, NULL);
715                 break;
716         case MONO_CPU_PRIV_TIME:
717                 get_cpu_times (cpu_id, NULL, &value, NULL, NULL, NULL);
718                 break;
719         case MONO_CPU_INTR_TIME:
720                 get_cpu_times (cpu_id, NULL, NULL, &value, NULL, NULL);
721                 break;
722         case MONO_CPU_DCP_TIME:
723                 get_cpu_times (cpu_id, NULL, NULL, NULL, &value, NULL);
724                 break;
725         case MONO_CPU_IDLE_TIME:
726                 get_cpu_times (cpu_id, NULL, NULL, NULL, NULL, &value);
727                 break;
728
729         case MONO_CPU_END:
730                 /* Nothing yet */
731                 return 0;
732         }
733         return value;
734 }
735
736 int
737 mono_atexit (void (*func)(void))
738 {
739 #ifdef PLATFORM_ANDROID
740         /* Some versions of android libc doesn't define atexit () */
741         return 0;
742 #else
743         return atexit (func);
744 #endif
745 }
746
747 gint32
748 mono_cpu_usage (MonoCpuUsageState *prev)
749 {
750         gint32 cpu_usage = 0;
751         gint64 cpu_total_time;
752         gint64 cpu_busy_time;
753
754 #ifndef HOST_WIN32
755         struct rusage resource_usage;
756         gint64 current_time;
757         gint64 kernel_time;
758         gint64 user_time;
759
760         if (getrusage (RUSAGE_SELF, &resource_usage) == -1) {
761                 g_error ("getrusage() failed, errno is %d (%s)\n", errno, strerror (errno));
762                 return -1;
763         }
764
765         current_time = mono_100ns_ticks ();
766         kernel_time = resource_usage.ru_stime.tv_sec * 1000 * 1000 * 10 + resource_usage.ru_stime.tv_usec * 10;
767         user_time = resource_usage.ru_utime.tv_sec * 1000 * 1000 * 10 + resource_usage.ru_utime.tv_usec * 10;
768
769         cpu_busy_time = (user_time - (prev ? prev->user_time : 0)) + (kernel_time - (prev ? prev->kernel_time : 0));
770         cpu_total_time = (current_time - (prev ? prev->current_time : 0)) * mono_cpu_count ();
771
772         if (prev) {
773                 prev->kernel_time = kernel_time;
774                 prev->user_time = user_time;
775                 prev->current_time = current_time;
776         }
777 #else
778         guint64 idle_time;
779         guint64 kernel_time;
780         guint64 user_time;
781
782         if (!GetSystemTimes ((FILETIME*) &idle_time, (FILETIME*) &kernel_time, (FILETIME*) &user_time)) {
783                 g_error ("GetSystemTimes() failed, error code is %d\n", GetLastError ());
784                 return -1;
785         }
786
787         cpu_total_time = (gint64)((user_time - (prev ? prev->user_time : 0)) + (kernel_time - (prev ? prev->kernel_time : 0)));
788         cpu_busy_time = (gint64)(cpu_total_time - (idle_time - (prev ? prev->idle_time : 0)));
789
790         if (prev) {
791                 prev->idle_time = idle_time;
792                 prev->kernel_time = kernel_time;
793                 prev->user_time = user_time;
794         }
795 #endif
796
797         if (cpu_total_time > 0 && cpu_busy_time > 0)
798                 cpu_usage = (gint32)(cpu_busy_time * 100 / cpu_total_time);
799
800         g_assert (cpu_usage >= 0);
801         g_assert (cpu_usage <= 100);
802
803         return cpu_usage;
804 }