Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
[gnulib.git] / lib / getloadavg.c
1 /* Get the system load averages.
2
3    Copyright (C) 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994,
4    1995, 1997, 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
5
6    NOTE: The canonical source of this file is maintained with gnulib.
7    Bugs can be reported to bug-gnulib@gnu.org.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22    USA.  */
23
24 /* Compile-time symbols that this file uses:
25
26    HAVE_PSTAT_GETDYNAMIC        Define this if your system has the
27                                 pstat_getdynamic function.  I think it
28                                 is unique to HPUX9.  The best way to get the
29                                 definition is through the AC_FUNC_GETLOADAVG
30                                 macro that comes with autoconf 2.13 or newer.
31                                 If that isn't an option, then just put
32                                 AC_CHECK_FUNCS(pstat_getdynamic) in your
33                                 configure.in file.
34    FIXUP_KERNEL_SYMBOL_ADDR()   Adjust address in returned struct nlist.
35    KERNEL_FILE                  Name of the kernel file to nlist.
36    LDAV_CVT()                   Scale the load average from the kernel.
37                                 Returns a double.
38    LDAV_SYMBOL                  Name of kernel symbol giving load average.
39    LOAD_AVE_TYPE                Type of the load average array in the kernel.
40                                 Must be defined unless one of
41                                 apollo, DGUX, NeXT, or UMAX is defined;
42                                 or we have libkstat;
43                                 otherwise, no load average is available.
44    HAVE_NLIST_H                 nlist.h is available.  NLIST_STRUCT defaults
45                                 to this.
46    NLIST_STRUCT                 Include nlist.h, not a.out.h, and
47                                 the nlist n_name element is a pointer,
48                                 not an array.
49    HAVE_STRUCT_NLIST_N_UN_N_NAME `n_un.n_name' is member of `struct nlist'.
50    LINUX_LDAV_FILE              [__linux__]: File containing load averages.
51
52    Specific system predefines this file uses, aside from setting
53    default values if not emacs:
54
55    apollo
56    BSD                          Real BSD, not just BSD-like.
57    convex
58    DGUX
59    eunice                       UNIX emulator under VMS.
60    hpux
61    __MSDOS__                    No-op for MSDOS.
62    NeXT
63    sgi
64    sequent                      Sequent Dynix 3.x.x (BSD)
65    _SEQUENT_                    Sequent DYNIX/ptx 1.x.x (SYSV)
66    sony_news                    NEWS-OS (works at least for 4.1C)
67    UMAX
68    UMAX4_3
69    VMS
70    WINDOWS32                    No-op for Windows95/NT.
71    __linux__                    Linux: assumes /proc file system mounted.
72                                 Support from Michael K. Johnson.
73    __NetBSD__                   NetBSD: assumes /kern file system mounted.
74
75    In addition, to avoid nesting many #ifdefs, we internally set
76    LDAV_DONE to indicate that the load average has been computed.
77
78    We also #define LDAV_PRIVILEGED if a program will require
79    special installation to be able to call getloadavg.  */
80
81 /* This should always be first.  */
82 #ifdef HAVE_CONFIG_H
83 # include <config.h>
84 #endif
85
86 #include <errno.h>
87 #include <stdbool.h>
88 #include <stdio.h>
89 #include <stdlib.h>
90
91 /* Exclude all the code except the test program at the end
92    if the system has its own `getloadavg' function.  */
93
94 #ifndef HAVE_GETLOADAVG
95
96 # include <sys/types.h>
97
98 /* Both the Emacs and non-Emacs sections want this.  Some
99    configuration files' definitions for the LOAD_AVE_CVT macro (like
100    sparc.h's) use macros like FSCALE, defined here.  */
101 # if defined (unix) || defined (__unix)
102 #  include <sys/param.h>
103 # endif
104
105 # include "c-strtod.h"
106 # include "cloexec.h"
107 # include "intprops.h"
108 # include "xalloc.h"
109
110 /* The existing Emacs configuration files define a macro called
111    LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
112    returns the load average multiplied by 100.  What we actually want
113    is a macro called LDAV_CVT, which returns the load average as an
114    unmultiplied double.
115
116    For backwards compatibility, we'll define LDAV_CVT in terms of
117    LOAD_AVE_CVT, but future machine config files should just define
118    LDAV_CVT directly.  */
119
120 # if !defined (LDAV_CVT) && defined (LOAD_AVE_CVT)
121 #  define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
122 # endif
123
124 # if !defined (BSD) && defined (ultrix)
125 /* Ultrix behaves like BSD on Vaxen.  */
126 #  define BSD
127 # endif
128
129 # ifdef NeXT
130 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
131    conflicts with the definition understood in this file, that this
132    really is BSD. */
133 #  undef BSD
134
135 /* NeXT defines FSCALE in <sys/param.h>.  However, we take FSCALE being
136    defined to mean that the nlist method should be used, which is not true.  */
137 #  undef FSCALE
138 # endif
139
140 /* Same issues as for NeXT apply to the HURD-based GNU system.  */
141 # ifdef __GNU__
142 #  undef BSD
143 #  undef FSCALE
144 # endif /* __GNU__ */
145
146 /* Set values that are different from the defaults, which are
147    set a little farther down with #ifndef.  */
148
149
150 /* Some shorthands.  */
151
152 # if defined (HPUX) && !defined (hpux)
153 #  define hpux
154 # endif
155
156 # if defined (__hpux) && !defined (hpux)
157 #  define hpux
158 # endif
159
160 # if defined (__sun) && !defined (sun)
161 #  define sun
162 # endif
163
164 # if defined (hp300) && !defined (hpux)
165 #  define MORE_BSD
166 # endif
167
168 # if defined (ultrix) && defined (mips)
169 #  define decstation
170 # endif
171
172 # if defined (__SVR4) && !defined (SVR4)
173 #  define SVR4
174 # endif
175
176 # if (defined (sun) && defined (SVR4)) || defined (SOLARIS2)
177 #  define SUNOS_5
178 # endif
179
180 # if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
181 #  define OSF_ALPHA
182 #  include <sys/mbuf.h>
183 #  include <sys/socket.h>
184 #  include <net/route.h>
185 #  include <sys/table.h>
186 # endif
187
188 # if defined (__osf__) && (defined (mips) || defined (__mips__))
189 #  define OSF_MIPS
190 #  include <sys/table.h>
191 # endif
192
193 /* UTek's /bin/cc on the 4300 has no architecture specific cpp define by
194    default, but _MACH_IND_SYS_TYPES is defined in <sys/types.h>.  Combine
195    that with a couple of other things and we'll have a unique match.  */
196 # if !defined (tek4300) && defined (unix) && defined (m68k) && defined (mc68000) && defined (mc68020) && defined (_MACH_IND_SYS_TYPES)
197 #  define tek4300                       /* Define by emacs, but not by other users.  */
198 # endif
199
200
201 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars.  */
202 # ifndef LOAD_AVE_TYPE
203
204 #  ifdef MORE_BSD
205 #   define LOAD_AVE_TYPE long
206 #  endif
207
208 #  ifdef sun
209 #   define LOAD_AVE_TYPE long
210 #  endif
211
212 #  ifdef decstation
213 #   define LOAD_AVE_TYPE long
214 #  endif
215
216 #  ifdef _SEQUENT_
217 #   define LOAD_AVE_TYPE long
218 #  endif
219
220 #  ifdef sgi
221 #   define LOAD_AVE_TYPE long
222 #  endif
223
224 #  ifdef SVR4
225 #   define LOAD_AVE_TYPE long
226 #  endif
227
228 #  ifdef sony_news
229 #   define LOAD_AVE_TYPE long
230 #  endif
231
232 #  ifdef sequent
233 #   define LOAD_AVE_TYPE long
234 #  endif
235
236 #  ifdef OSF_ALPHA
237 #   define LOAD_AVE_TYPE long
238 #  endif
239
240 #  if defined (ardent) && defined (titan)
241 #   define LOAD_AVE_TYPE long
242 #  endif
243
244 #  ifdef tek4300
245 #   define LOAD_AVE_TYPE long
246 #  endif
247
248 #  if defined (alliant) && defined (i860) /* Alliant FX/2800 */
249 #   define LOAD_AVE_TYPE long
250 #  endif
251
252 #  ifdef _AIX
253 #   define LOAD_AVE_TYPE long
254 #  endif
255
256 #  ifdef convex
257 #   define LOAD_AVE_TYPE double
258 #   ifndef LDAV_CVT
259 #    define LDAV_CVT(n) (n)
260 #   endif
261 #  endif
262
263 # endif /* No LOAD_AVE_TYPE.  */
264
265 # ifdef OSF_ALPHA
266 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
267    according to ghazi@noc.rutgers.edu.  */
268 #  undef FSCALE
269 #  define FSCALE 1024.0
270 # endif
271
272 # if defined (alliant) && defined (i860) /* Alliant FX/2800 */
273 /* <sys/param.h> defines an incorrect value for FSCALE on an
274    Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu.  */
275 #  undef FSCALE
276 #  define FSCALE 100.0
277 # endif
278
279
280 # ifndef        FSCALE
281
282 /* SunOS and some others define FSCALE in sys/param.h.  */
283
284 #  ifdef MORE_BSD
285 #   define FSCALE 2048.0
286 #  endif
287
288 #  if defined (MIPS) || defined (SVR4) || defined (decstation)
289 #   define FSCALE 256
290 #  endif
291
292 #  if defined (sgi) || defined (sequent)
293 /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined
294    above under #ifdef MIPS.  But we want the sgi value.  */
295 #   undef FSCALE
296 #   define FSCALE 1000.0
297 #  endif
298
299 #  if defined (ardent) && defined (titan)
300 #   define FSCALE 65536.0
301 #  endif
302
303 #  ifdef tek4300
304 #   define FSCALE 100.0
305 #  endif
306
307 #  ifdef _AIX
308 #   define FSCALE 65536.0
309 #  endif
310
311 # endif /* Not FSCALE.  */
312
313 # if !defined (LDAV_CVT) && defined (FSCALE)
314 #  define LDAV_CVT(n) (((double) (n)) / FSCALE)
315 # endif
316
317 # ifndef NLIST_STRUCT
318 #  if HAVE_NLIST_H
319 #   define NLIST_STRUCT
320 #  endif
321 # endif
322
323 # if defined (sgi) || (defined (mips) && !defined (BSD))
324 #  define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
325 # endif
326
327
328 # if !defined (KERNEL_FILE) && defined (sequent)
329 #  define KERNEL_FILE "/dynix"
330 # endif
331
332 # if !defined (KERNEL_FILE) && defined (hpux)
333 #  define KERNEL_FILE "/hp-ux"
334 # endif
335
336 # if !defined (KERNEL_FILE) && (defined (_SEQUENT_) || defined (MIPS) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)))
337 #  define KERNEL_FILE "/unix"
338 # endif
339
340
341 # if !defined (LDAV_SYMBOL) && defined (alliant)
342 #  define LDAV_SYMBOL "_Loadavg"
343 # endif
344
345 # if !defined (LDAV_SYMBOL) && ((defined (hpux) && !defined (hp9000s300)) || defined (_SEQUENT_) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)) || defined (_AIX))
346 #  define LDAV_SYMBOL "avenrun"
347 # endif
348
349 # ifdef HAVE_UNISTD_H
350 #  include <unistd.h>
351 # endif
352
353 /* LOAD_AVE_TYPE should only get defined if we're going to use the
354    nlist method.  */
355 # if !defined (LOAD_AVE_TYPE) && (defined (BSD) || defined (LDAV_CVT) || defined (KERNEL_FILE) || defined (LDAV_SYMBOL))
356 #  define LOAD_AVE_TYPE double
357 # endif
358
359 # ifdef LOAD_AVE_TYPE
360
361 #  ifndef VMS
362 #   ifndef __linux__
363 #    ifndef NLIST_STRUCT
364 #     include <a.out.h>
365 #    else /* NLIST_STRUCT */
366 #     include <nlist.h>
367 #    endif /* NLIST_STRUCT */
368
369 #    ifdef SUNOS_5
370 #     include <fcntl.h>
371 #     include <kvm.h>
372 #     include <kstat.h>
373 #    endif
374
375 #    if defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
376 #     include <sys/pstat.h>
377 #    endif
378
379 #    ifndef KERNEL_FILE
380 #     define KERNEL_FILE "/vmunix"
381 #    endif /* KERNEL_FILE */
382
383 #    ifndef LDAV_SYMBOL
384 #     define LDAV_SYMBOL "_avenrun"
385 #    endif /* LDAV_SYMBOL */
386 #   endif /* __linux__ */
387
388 #  else /* VMS */
389
390 #   ifndef eunice
391 #    include <iodef.h>
392 #    include <descrip.h>
393 #   else /* eunice */
394 #    include <vms/iodef.h>
395 #   endif /* eunice */
396 #  endif /* VMS */
397
398 #  ifndef LDAV_CVT
399 #   define LDAV_CVT(n) ((double) (n))
400 #  endif /* !LDAV_CVT */
401
402 # endif /* LOAD_AVE_TYPE */
403
404 # if defined (__GNU__) && !defined (NeXT)
405 /* Note that NeXT Openstep defines __GNU__ even though it should not.  */
406 /* GNU system acts much like NeXT, for load average purposes,
407    but not exactly.  */
408 #  define NeXT
409 #  define host_self mach_host_self
410 # endif
411
412 # ifdef NeXT
413 #  ifdef HAVE_MACH_MACH_H
414 #   include <mach/mach.h>
415 #  else
416 #   include <mach.h>
417 #  endif
418 # endif /* NeXT */
419
420 # ifdef sgi
421 #  include <sys/sysmp.h>
422 # endif /* sgi */
423
424 # ifdef UMAX
425 #  include <signal.h>
426 #  include <sys/time.h>
427 #  include <sys/wait.h>
428 #  include <sys/syscall.h>
429
430 #  ifdef UMAX_43
431 #   include <machine/cpu.h>
432 #   include <inq_stats/statistics.h>
433 #   include <inq_stats/sysstats.h>
434 #   include <inq_stats/cpustats.h>
435 #   include <inq_stats/procstats.h>
436 #  else /* Not UMAX_43.  */
437 #   include <sys/sysdefs.h>
438 #   include <sys/statistics.h>
439 #   include <sys/sysstats.h>
440 #   include <sys/cpudefs.h>
441 #   include <sys/cpustats.h>
442 #   include <sys/procstats.h>
443 #  endif /* Not UMAX_43.  */
444 # endif /* UMAX */
445
446 # ifdef DGUX
447 #  include <sys/dg_sys_info.h>
448 # endif
449
450 # include <fcntl.h>
451
452 # include "unistd-safer.h"
453 \f
454 /* Avoid static vars inside a function since in HPUX they dump as pure.  */
455
456 # ifdef NeXT
457 static processor_set_t default_set;
458 static bool getloadavg_initialized;
459 # endif /* NeXT */
460
461 # ifdef UMAX
462 static unsigned int cpus = 0;
463 static unsigned int samples;
464 # endif /* UMAX */
465
466 # ifdef DGUX
467 static struct dg_sys_info_load_info load_info;  /* what-a-mouthful! */
468 # endif /* DGUX */
469
470 # if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
471 /* File descriptor open to /dev/kmem or VMS load ave driver.  */
472 static int channel;
473 /* True iff channel is valid.  */
474 static bool getloadavg_initialized;
475 /* Offset in kmem to seek to read load average, or 0 means invalid.  */
476 static long offset;
477
478 #  if !defined (VMS) && !defined (sgi) && !defined (__linux__)
479 static struct nlist nl[2];
480 #  endif /* Not VMS or sgi */
481
482 #  ifdef SUNOS_5
483 static kvm_t *kd;
484 #  endif /* SUNOS_5 */
485
486 # endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
487 \f
488 /* Put the 1 minute, 5 minute and 15 minute load averages
489    into the first NELEM elements of LOADAVG.
490    Return the number written (never more than 3, but may be less than NELEM),
491    or -1 if an error occurred.  */
492
493 int
494 getloadavg (double loadavg[], int nelem)
495 {
496   int elem = 0;                 /* Return value.  */
497
498 # ifdef NO_GET_LOAD_AVG
499 #  define LDAV_DONE
500   /* Set errno to zero to indicate that there was no particular error;
501      this function just can't work at all on this system.  */
502   errno = 0;
503   elem = -1;
504 # endif
505
506 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT)
507 /* Use libkstat because we don't have to be root.  */
508 #  define LDAV_DONE
509   kstat_ctl_t *kc;
510   kstat_t *ksp;
511   kstat_named_t *kn;
512
513   kc = kstat_open ();
514   if (kc == 0)
515     return -1;
516   ksp = kstat_lookup (kc, "unix", 0, "system_misc");
517   if (ksp == 0)
518     return -1;
519   if (kstat_read (kc, ksp, 0) == -1)
520     return -1;
521
522
523   kn = kstat_data_lookup (ksp, "avenrun_1min");
524   if (kn == 0)
525     {
526       /* Return -1 if no load average information is available.  */
527       nelem = 0;
528       elem = -1;
529     }
530
531   if (nelem >= 1)
532     loadavg[elem++] = (double) kn->value.ul / FSCALE;
533
534   if (nelem >= 2)
535     {
536       kn = kstat_data_lookup (ksp, "avenrun_5min");
537       if (kn != 0)
538         {
539           loadavg[elem++] = (double) kn->value.ul / FSCALE;
540
541           if (nelem >= 3)
542             {
543               kn = kstat_data_lookup (ksp, "avenrun_15min");
544               if (kn != 0)
545                 loadavg[elem++] = (double) kn->value.ul / FSCALE;
546             }
547         }
548     }
549
550   kstat_close (kc);
551 # endif /* HAVE_LIBKSTAT */
552
553 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
554 /* Use pstat_getdynamic() because we don't have to be root.  */
555 #  define LDAV_DONE
556 #  undef LOAD_AVE_TYPE
557
558   struct pst_dynamic dyn_info;
559   if (pstat_getdynamic (&dyn_info, sizeof (dyn_info), 0, 0) < 0)
560     return -1;
561   if (nelem > 0)
562     loadavg[elem++] = dyn_info.psd_avg_1_min;
563   if (nelem > 1)
564     loadavg[elem++] = dyn_info.psd_avg_5_min;
565   if (nelem > 2)
566     loadavg[elem++] = dyn_info.psd_avg_15_min;
567
568 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
569
570 # if !defined (LDAV_DONE) && defined (__linux__)
571 #  define LDAV_DONE
572 #  undef LOAD_AVE_TYPE
573
574 #  ifndef LINUX_LDAV_FILE
575 #   define LINUX_LDAV_FILE "/proc/loadavg"
576 #  endif
577
578   char ldavgbuf[3 * (INT_STRLEN_BOUND (long int) + sizeof ".00")];
579   char const *ptr = ldavgbuf;
580   int fd, count;
581
582   fd = open (LINUX_LDAV_FILE, O_RDONLY);
583   if (fd == -1)
584     return -1;
585   count = read (fd, ldavgbuf, sizeof ldavgbuf - 1);
586   (void) close (fd);
587   if (count <= 0)
588     return -1;
589   ldavgbuf[count] = '\0';
590
591   for (elem = 0; elem < nelem; elem++)
592     {
593       char *endptr;
594       double d = c_strtod (ptr, &endptr);
595       if (ptr == endptr)
596         {
597           if (elem == 0)
598             return -1;
599           break;
600         }
601       loadavg[elem] = d;
602       ptr = endptr;
603     }
604
605   return elem;
606
607 # endif /* __linux__ */
608
609 # if !defined (LDAV_DONE) && defined (__NetBSD__)
610 #  define LDAV_DONE
611 #  undef LOAD_AVE_TYPE
612
613 #  ifndef NETBSD_LDAV_FILE
614 #   define NETBSD_LDAV_FILE "/kern/loadavg"
615 #  endif
616
617   unsigned long int load_ave[3], scale;
618   int count;
619   FILE *fp;
620
621   fp = fopen (NETBSD_LDAV_FILE, "r");
622   if (fp == NULL)
623     return -1;
624   count = fscanf (fp, "%lu %lu %lu %lu\n",
625                   &load_ave[0], &load_ave[1], &load_ave[2],
626                   &scale);
627   (void) fclose (fp);
628   if (count != 4)
629     return -1;
630
631   for (elem = 0; elem < nelem; elem++)
632     loadavg[elem] = (double) load_ave[elem] / (double) scale;
633
634   return elem;
635
636 # endif /* __NetBSD__ */
637
638 # if !defined (LDAV_DONE) && defined (NeXT)
639 #  define LDAV_DONE
640   /* The NeXT code was adapted from iscreen 3.2.  */
641
642   host_t host;
643   struct processor_set_basic_info info;
644   unsigned int info_count;
645
646   /* We only know how to get the 1-minute average for this system,
647      so even if the caller asks for more than 1, we only return 1.  */
648
649   if (!getloadavg_initialized)
650     {
651       if (processor_set_default (host_self (), &default_set) == KERN_SUCCESS)
652         getloadavg_initialized = true;
653     }
654
655   if (getloadavg_initialized)
656     {
657       info_count = PROCESSOR_SET_BASIC_INFO_COUNT;
658       if (processor_set_info (default_set, PROCESSOR_SET_BASIC_INFO, &host,
659                               (processor_set_info_t) &info, &info_count)
660           != KERN_SUCCESS)
661         getloadavg_initialized = false;
662       else
663         {
664           if (nelem > 0)
665             loadavg[elem++] = (double) info.load_average / LOAD_SCALE;
666         }
667     }
668
669   if (!getloadavg_initialized)
670     return -1;
671 # endif /* NeXT */
672
673 # if !defined (LDAV_DONE) && defined (UMAX)
674 #  define LDAV_DONE
675 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
676    have a /dev/kmem.  Information about the workings of the running kernel
677    can be gathered with inq_stats system calls.
678    We only know how to get the 1-minute average for this system.  */
679
680   struct proc_summary proc_sum_data;
681   struct stat_descr proc_info;
682   double load;
683   register unsigned int i, j;
684
685   if (cpus == 0)
686     {
687       register unsigned int c, i;
688       struct cpu_config conf;
689       struct stat_descr desc;
690
691       desc.sd_next = 0;
692       desc.sd_subsys = SUBSYS_CPU;
693       desc.sd_type = CPUTYPE_CONFIG;
694       desc.sd_addr = (char *) &conf;
695       desc.sd_size = sizeof conf;
696
697       if (inq_stats (1, &desc))
698         return -1;
699
700       c = 0;
701       for (i = 0; i < conf.config_maxclass; ++i)
702         {
703           struct class_stats stats;
704           bzero ((char *) &stats, sizeof stats);
705
706           desc.sd_type = CPUTYPE_CLASS;
707           desc.sd_objid = i;
708           desc.sd_addr = (char *) &stats;
709           desc.sd_size = sizeof stats;
710
711           if (inq_stats (1, &desc))
712             return -1;
713
714           c += stats.class_numcpus;
715         }
716       cpus = c;
717       samples = cpus < 2 ? 3 : (2 * cpus / 3);
718     }
719
720   proc_info.sd_next = 0;
721   proc_info.sd_subsys = SUBSYS_PROC;
722   proc_info.sd_type = PROCTYPE_SUMMARY;
723   proc_info.sd_addr = (char *) &proc_sum_data;
724   proc_info.sd_size = sizeof (struct proc_summary);
725   proc_info.sd_sizeused = 0;
726
727   if (inq_stats (1, &proc_info) != 0)
728     return -1;
729
730   load = proc_sum_data.ps_nrunnable;
731   j = 0;
732   for (i = samples - 1; i > 0; --i)
733     {
734       load += proc_sum_data.ps_nrun[j];
735       if (j++ == PS_NRUNSIZE)
736         j = 0;
737     }
738
739   if (nelem > 0)
740     loadavg[elem++] = load / samples / cpus;
741 # endif /* UMAX */
742
743 # if !defined (LDAV_DONE) && defined (DGUX)
744 #  define LDAV_DONE
745   /* This call can return -1 for an error, but with good args
746      it's not supposed to fail.  The first argument is for no
747      apparent reason of type `long int *'.  */
748   dg_sys_info ((long int *) &load_info,
749                DG_SYS_INFO_LOAD_INFO_TYPE,
750                DG_SYS_INFO_LOAD_VERSION_0);
751
752   if (nelem > 0)
753     loadavg[elem++] = load_info.one_minute;
754   if (nelem > 1)
755     loadavg[elem++] = load_info.five_minute;
756   if (nelem > 2)
757     loadavg[elem++] = load_info.fifteen_minute;
758 # endif /* DGUX */
759
760 # if !defined (LDAV_DONE) && defined (apollo)
761 #  define LDAV_DONE
762 /* Apollo code from lisch@mentorg.com (Ray Lischner).
763
764    This system call is not documented.  The load average is obtained as
765    three long integers, for the load average over the past minute,
766    five minutes, and fifteen minutes.  Each value is a scaled integer,
767    with 16 bits of integer part and 16 bits of fraction part.
768
769    I'm not sure which operating system first supported this system call,
770    but I know that SR10.2 supports it.  */
771
772   extern void proc1_$get_loadav ();
773   unsigned long load_ave[3];
774
775   proc1_$get_loadav (load_ave);
776
777   if (nelem > 0)
778     loadavg[elem++] = load_ave[0] / 65536.0;
779   if (nelem > 1)
780     loadavg[elem++] = load_ave[1] / 65536.0;
781   if (nelem > 2)
782     loadavg[elem++] = load_ave[2] / 65536.0;
783 # endif /* apollo */
784
785 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
786 #  define LDAV_DONE
787
788   struct tbl_loadavg load_ave;
789   table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
790   loadavg[elem++]
791     = (load_ave.tl_lscale == 0
792        ? load_ave.tl_avenrun.d[0]
793        : (load_ave.tl_avenrun.l[0] / (double) load_ave.tl_lscale));
794 # endif /* OSF_MIPS */
795
796 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
797 #  define LDAV_DONE
798
799   /* A faithful emulation is going to have to be saved for a rainy day.  */
800   for ( ; elem < nelem; elem++)
801     {
802       loadavg[elem] = 0.0;
803     }
804 # endif  /* __MSDOS__ || WINDOWS32 */
805
806 # if !defined (LDAV_DONE) && defined (OSF_ALPHA)
807 #  define LDAV_DONE
808
809   struct tbl_loadavg load_ave;
810   table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
811   for (elem = 0; elem < nelem; elem++)
812     loadavg[elem]
813       = (load_ave.tl_lscale == 0
814          ? load_ave.tl_avenrun.d[elem]
815          : (load_ave.tl_avenrun.l[elem] / (double) load_ave.tl_lscale));
816 # endif /* OSF_ALPHA */
817
818 # if !defined (LDAV_DONE) && defined (VMS)
819   /* VMS specific code -- read from the Load Ave driver.  */
820
821   LOAD_AVE_TYPE load_ave[3];
822   static bool getloadavg_initialized;
823 #  ifdef eunice
824   struct
825   {
826     int dsc$w_length;
827     char *dsc$a_pointer;
828   } descriptor;
829 #  endif
830
831   /* Ensure that there is a channel open to the load ave device.  */
832   if (!getloadavg_initialized)
833     {
834       /* Attempt to open the channel.  */
835 #  ifdef eunice
836       descriptor.dsc$w_length = 18;
837       descriptor.dsc$a_pointer = "$$VMS_LOAD_AVERAGE";
838 #  else
839       $DESCRIPTOR (descriptor, "LAV0:");
840 #  endif
841       if (sys$assign (&descriptor, &channel, 0, 0) & 1)
842         getloadavg_initialized = true;
843     }
844
845   /* Read the load average vector.  */
846   if (getloadavg_initialized
847       && !(sys$qiow (0, channel, IO$_READVBLK, 0, 0, 0,
848                      load_ave, 12, 0, 0, 0, 0) & 1))
849     {
850       sys$dassgn (channel);
851       getloadavg_initialized = false;
852     }
853
854   if (!getloadavg_initialized)
855     return -1;
856 # endif /* VMS */
857
858 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) && !defined (VMS)
859
860   /* UNIX-specific code -- read the average from /dev/kmem.  */
861
862 #  define LDAV_PRIVILEGED               /* This code requires special installation.  */
863
864   LOAD_AVE_TYPE load_ave[3];
865
866   /* Get the address of LDAV_SYMBOL.  */
867   if (offset == 0)
868     {
869 #  ifndef sgi
870 #   ifndef NLIST_STRUCT
871       strcpy (nl[0].n_name, LDAV_SYMBOL);
872       strcpy (nl[1].n_name, "");
873 #   else /* NLIST_STRUCT */
874 #    ifdef HAVE_STRUCT_NLIST_N_UN_N_NAME
875       nl[0].n_un.n_name = LDAV_SYMBOL;
876       nl[1].n_un.n_name = 0;
877 #    else /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
878       nl[0].n_name = LDAV_SYMBOL;
879       nl[1].n_name = 0;
880 #    endif /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
881 #   endif /* NLIST_STRUCT */
882
883 #   ifndef SUNOS_5
884       if (
885 #    if !(defined (_AIX) && !defined (ps2))
886           nlist (KERNEL_FILE, nl)
887 #    else  /* _AIX */
888           knlist (nl, 1, sizeof (nl[0]))
889 #    endif
890           >= 0)
891           /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i.  */
892           {
893 #    ifdef FIXUP_KERNEL_SYMBOL_ADDR
894             FIXUP_KERNEL_SYMBOL_ADDR (nl);
895 #    endif
896             offset = nl[0].n_value;
897           }
898 #   endif /* !SUNOS_5 */
899 #  else  /* sgi */
900       int ldav_off;
901
902       ldav_off = sysmp (MP_KERNADDR, MPKA_AVENRUN);
903       if (ldav_off != -1)
904         offset = (long int) ldav_off & 0x7fffffff;
905 #  endif /* sgi */
906     }
907
908   /* Make sure we have /dev/kmem open.  */
909   if (!getloadavg_initialized)
910     {
911 #  ifndef SUNOS_5
912       channel = fd_safer (open ("/dev/kmem", O_RDONLY));
913       if (channel >= 0)
914         {
915           /* Set the channel to close on exec, so it does not
916              litter any child's descriptor table.  */
917           set_cloexec_flag (channel, true);
918           getloadavg_initialized = true;
919         }
920 #  else /* SUNOS_5 */
921       /* We pass 0 for the kernel, corefile, and swapfile names
922          to use the currently running kernel.  */
923       kd = kvm_open (0, 0, 0, O_RDONLY, 0);
924       if (kd != 0)
925         {
926           /* nlist the currently running kernel.  */
927           kvm_nlist (kd, nl);
928           offset = nl[0].n_value;
929           getloadavg_initialized = true;
930         }
931 #  endif /* SUNOS_5 */
932     }
933
934   /* If we can, get the load average values.  */
935   if (offset && getloadavg_initialized)
936     {
937       /* Try to read the load.  */
938 #  ifndef SUNOS_5
939       if (lseek (channel, offset, 0) == -1L
940           || read (channel, (char *) load_ave, sizeof (load_ave))
941           != sizeof (load_ave))
942         {
943           close (channel);
944           getloadavg_initialized = false;
945         }
946 #  else  /* SUNOS_5 */
947       if (kvm_read (kd, offset, (char *) load_ave, sizeof (load_ave))
948           != sizeof (load_ave))
949         {
950           kvm_close (kd);
951           getloadavg_initialized = false;
952         }
953 #  endif /* SUNOS_5 */
954     }
955
956   if (offset == 0 || !getloadavg_initialized)
957     return -1;
958 # endif /* LOAD_AVE_TYPE and not VMS */
959
960 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS.  */
961   if (nelem > 0)
962     loadavg[elem++] = LDAV_CVT (load_ave[0]);
963   if (nelem > 1)
964     loadavg[elem++] = LDAV_CVT (load_ave[1]);
965   if (nelem > 2)
966     loadavg[elem++] = LDAV_CVT (load_ave[2]);
967
968 #  define LDAV_DONE
969 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
970
971 # ifdef LDAV_DONE
972   return elem;
973 # else
974   /* Set errno to zero to indicate that there was no particular error;
975      this function just can't work at all on this system.  */
976   errno = 0;
977   return -1;
978 # endif
979 }
980
981 #endif /* ! HAVE_GETLOADAVG */
982 \f
983 #ifdef TEST
984 int
985 main (int argc, char **argv)
986 {
987   int naptime = 0;
988
989   if (argc > 1)
990     naptime = atoi (argv[1]);
991
992   while (1)
993     {
994       double avg[3];
995       int loads;
996
997       errno = 0;                /* Don't be misled if it doesn't set errno.  */
998       loads = getloadavg (avg, 3);
999       if (loads == -1)
1000         {
1001           perror ("Error getting load average");
1002           return EXIT_FAILURE;
1003         }
1004       if (loads > 0)
1005         printf ("1-minute: %f  ", avg[0]);
1006       if (loads > 1)
1007         printf ("5-minute: %f  ", avg[1]);
1008       if (loads > 2)
1009         printf ("15-minute: %f  ", avg[2]);
1010       if (loads > 0)
1011         putchar ('\n');
1012
1013       if (naptime == 0)
1014         break;
1015       sleep (naptime);
1016     }
1017
1018   return EXIT_SUCCESS;
1019 }
1020 #endif /* TEST */