1 /* Get the system load averages.
2 Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93, 1994
3 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19 /* Compile-time symbols that this file uses:
21 FIXUP_KERNEL_SYMBOL_ADDR() Adjust address in returned struct nlist.
22 KERNEL_FILE Pathname of the kernel to nlist.
23 LDAV_CVT() Scale the load average from the kernel.
25 LDAV_SYMBOL Name of kernel symbol giving load average.
26 LOAD_AVE_TYPE Type of the load average array in the kernel.
27 Must be defined unless one of
28 apollo, DGUX, NeXT, or UMAX is defined;
29 otherwise, no load average is available.
30 NLIST_STRUCT Include nlist.h, not a.out.h, and
31 the nlist n_name element is a pointer,
33 NLIST_NAME_UNION struct nlist has an n_un member, not n_name.
34 LINUX_LDAV_FILE [__linux__]: File containing load averages.
36 Specific system predefines this file uses, aside from setting
37 default values if not emacs:
40 BSD Real BSD, not just BSD-like.
42 eunice UNIX emulator under VMS.
46 sequent Sequent Dynix 3.x.x (BSD)
47 _SEQUENT_ Sequent DYNIX/ptx 1.x.x (SYSV)
48 sony_news NEWS-OS (works at least for 4.1C)
52 __linux__ Linux: assumes /proc filesystem mounted.
53 Support from Michael K. Johnson.
54 __NetBSD__ NetBSD: assumes /kern filesystem mounted.
56 In addition, to avoid nesting many #ifdefs, we internally set
57 LDAV_DONE to indicate that the load average has been computed.
59 We also #define LDAV_PRIVILEGED if a program will require
60 special installation to be able to call getloadavg. */
62 #include <sys/types.h>
64 /* Both the Emacs and non-Emacs sections want this. Some
65 configuration files' definitions for the LOAD_AVE_CVT macro (like
66 sparc.h's) use macros like FSCALE, defined here. */
68 #include <sys/param.h>
76 /* Exclude all the code except the test program at the end
77 if the system has its own `getloadavg' function.
79 The declaration of `errno' is needed by the test program
80 as well as the function itself, so it comes first. */
88 #ifndef HAVE_GETLOADAVG
91 /* The existing Emacs configuration files define a macro called
92 LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
93 returns the load average multiplied by 100. What we actually want
94 is a macro called LDAV_CVT, which returns the load average as an
97 For backwards compatibility, we'll define LDAV_CVT in terms of
98 LOAD_AVE_CVT, but future machine config files should just define
101 #if !defined(LDAV_CVT) && defined(LOAD_AVE_CVT)
102 #define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
105 #if !defined (BSD) && defined (ultrix)
106 /* Ultrix behaves like BSD on Vaxen. */
111 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
112 conflicts with the definition understood in this file, that this
116 /* NeXT defines FSCALE in <sys/param.h>. However, we take FSCALE being
117 defined to mean that the nlist method should be used, which is not true. */
121 /* Set values that are different from the defaults, which are
122 set a little farther down with #ifndef. */
125 /* Some shorthands. */
127 #if defined (HPUX) && !defined (hpux)
131 #if defined(hp300) && !defined(hpux)
135 #if defined(ultrix) && defined(mips)
139 #if defined(sun) && defined(SVR4)
143 #if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
145 #include <sys/table.h>
148 #if defined (__osf__) && (defined (mips) || defined (__mips__))
150 #include <sys/table.h>
153 /* UTek's /bin/cc on the 4300 has no architecture specific cpp define by
154 default, but _MACH_IND_SYS_TYPES is defined in <sys/types.h>. Combine
155 that with a couple of other things and we'll have a unique match. */
156 #if !defined (tek4300) && defined (unix) && defined (m68k) && defined (mc68000) && defined (mc68020) && defined (_MACH_IND_SYS_TYPES)
157 #define tek4300 /* Define by emacs, but not by other users. */
161 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars. */
162 #ifndef LOAD_AVE_TYPE
165 #define LOAD_AVE_TYPE long
169 #define LOAD_AVE_TYPE long
173 #define LOAD_AVE_TYPE long
177 #define LOAD_AVE_TYPE long
181 #define LOAD_AVE_TYPE long
185 #define LOAD_AVE_TYPE long
189 #define LOAD_AVE_TYPE long
193 #define LOAD_AVE_TYPE long
197 #define LOAD_AVE_TYPE long
200 #if defined (ardent) && defined (titan)
201 #define LOAD_AVE_TYPE long
205 #define LOAD_AVE_TYPE long
208 #endif /* No LOAD_AVE_TYPE. */
211 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
212 according to ghazi@noc.rutgers.edu. */
214 #define FSCALE 1024.0
220 /* SunOS and some others define FSCALE in sys/param.h. */
223 #define FSCALE 2048.0
226 #if defined(MIPS) || defined(SVR4) || defined(decstation)
230 #if defined (sgi) || defined (sequent)
231 /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined
232 above under #ifdef MIPS. But we want the sgi value. */
234 #define FSCALE 1000.0
237 #if defined (ardent) && defined (titan)
238 #define FSCALE 65536.0
245 #endif /* Not FSCALE. */
247 #if !defined (LDAV_CVT) && defined (FSCALE)
248 #define LDAV_CVT(n) (((double) (n)) / FSCALE)
251 /* VAX C can't handle multi-line #ifs, or lines longer that 256 characters. */
270 #if defined (_SEQUENT_) || defined (sequent)
290 #if defined (ardent) && defined (titan)
302 #endif /* defined (NLIST_STRUCT) */
305 #if defined(sgi) || (defined(mips) && !defined(BSD))
306 #define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
310 #if !defined (KERNEL_FILE) && defined (sequent)
311 #define KERNEL_FILE "/dynix"
314 #if !defined (KERNEL_FILE) && defined (hpux)
315 #define KERNEL_FILE "/hp-ux"
318 #if !defined(KERNEL_FILE) && (defined(_SEQUENT_) || defined(MIPS) || defined(SVR4) || defined(ISC) || defined (sgi) || defined(SVR4) || (defined (ardent) && defined (titan)))
319 #define KERNEL_FILE "/unix"
323 #if !defined (LDAV_SYMBOL) && defined (alliant)
324 #define LDAV_SYMBOL "_Loadavg"
327 #if !defined(LDAV_SYMBOL) && ((defined(hpux) && !defined(hp9000s300)) || defined(_SEQUENT_) || defined(SVR4) || defined(ISC) || defined(sgi) || (defined (ardent) && defined (titan)))
328 #define LDAV_SYMBOL "avenrun"
337 /* LOAD_AVE_TYPE should only get defined if we're going to use the
339 #if !defined(LOAD_AVE_TYPE) && (defined(BSD) || defined(LDAV_CVT) || defined(KERNEL_FILE) || defined(LDAV_SYMBOL))
340 #define LOAD_AVE_TYPE double
348 #else /* NLIST_STRUCT */
350 #endif /* NLIST_STRUCT */
358 #define KERNEL_FILE "/vmunix"
359 #endif /* KERNEL_FILE */
362 #define LDAV_SYMBOL "_avenrun"
363 #endif /* LDAV_SYMBOL */
371 #include <vms/iodef.h>
376 #define LDAV_CVT(n) ((double) (n))
377 #endif /* !LDAV_CVT */
379 #endif /* LOAD_AVE_TYPE */
382 #ifdef HAVE_MACH_MACH_H
383 #include <mach/mach.h>
390 #include <sys/sysmp.h>
396 #include <sys/time.h>
397 #include <sys/wait.h>
398 #include <sys/syscall.h>
401 #include <machine/cpu.h>
402 #include <inq_stats/statistics.h>
403 #include <inq_stats/sysstats.h>
404 #include <inq_stats/cpustats.h>
405 #include <inq_stats/procstats.h>
406 #else /* Not UMAX_43. */
407 #include <sys/sysdefs.h>
408 #include <sys/statistics.h>
409 #include <sys/sysstats.h>
410 #include <sys/cpudefs.h>
411 #include <sys/cpustats.h>
412 #include <sys/procstats.h>
413 #endif /* Not UMAX_43. */
417 #include <sys/dg_sys_info.h>
420 #if defined(HAVE_FCNTL_H) || defined(_POSIX_VERSION)
423 #include <sys/file.h>
426 /* Avoid static vars inside a function since in HPUX they dump as pure. */
429 static processor_set_t default_set
;
430 static int getloadavg_initialized
;
434 static unsigned int cpus
= 0;
435 static unsigned int samples
;
439 static struct dg_sys_info_load_info load_info
; /* what-a-mouthful! */
443 /* File descriptor open to /dev/kmem or VMS load ave driver. */
445 /* Nonzero iff channel is valid. */
446 static int getloadavg_initialized
;
447 /* Offset in kmem to seek to read load average, or 0 means invalid. */
450 #if !defined(VMS) && !defined(sgi)
451 static struct nlist nl
[2];
452 #endif /* Not VMS or sgi */
458 #endif /* LOAD_AVE_TYPE */
460 /* Put the 1 minute, 5 minute and 15 minute load averages
461 into the first NELEM elements of LOADAVG.
462 Return the number written (never more than 3, but may be less than NELEM),
463 or -1 if an error occurred. */
466 getloadavg (loadavg
, nelem
)
470 int elem
= 0; /* Return value. */
472 #ifdef NO_GET_LOAD_AVG
474 /* Set errno to zero to indicate that there was no particular error;
475 this function just can't work at all on this system. */
480 #if !defined (LDAV_DONE) && defined (__linux__)
484 #ifndef LINUX_LDAV_FILE
485 #define LINUX_LDAV_FILE "/proc/loadavg"
492 fd
= open (LINUX_LDAV_FILE
, O_RDONLY
);
495 count
= read (fd
, ldavgbuf
, 40);
500 count
= sscanf (ldavgbuf
, "%lf %lf %lf",
501 &load_ave
[0], &load_ave
[1], &load_ave
[2]);
505 for (elem
= 0; elem
< nelem
&& elem
< count
; elem
++)
506 loadavg
[elem
] = load_ave
[elem
];
510 #endif /* __linux__ */
512 #if !defined (LDAV_DONE) && defined (__NetBSD__)
516 #ifndef NETBSD_LDAV_FILE
517 #define NETBSD_LDAV_FILE "/kern/loadavg"
520 unsigned long int load_ave
[3], scale
;
524 fp
= fopen (NETBSD_LDAV_FILE
, "r");
527 count
= fscanf (fp
, "%lu %lu %lu %lu\n",
528 &load_ave
[0], &load_ave
[1], &load_ave
[2],
534 for (elem
= 0; elem
< nelem
; elem
++)
535 loadavg
[elem
] = (double) load_ave
[elem
] / (double) scale
;
539 #endif /* __NetBSD__ */
541 #if !defined (LDAV_DONE) && defined (NeXT)
543 /* The NeXT code was adapted from iscreen 3.2. */
546 struct processor_set_basic_info info
;
549 /* We only know how to get the 1-minute average for this system,
550 so even if the caller asks for more than 1, we only return 1. */
552 if (!getloadavg_initialized
)
554 if (processor_set_default (host_self (), &default_set
) == KERN_SUCCESS
)
555 getloadavg_initialized
= 1;
558 if (getloadavg_initialized
)
560 info_count
= PROCESSOR_SET_BASIC_INFO_COUNT
;
561 if (processor_set_info (default_set
, PROCESSOR_SET_BASIC_INFO
, &host
,
562 (processor_set_info_t
) &info
, &info_count
)
564 getloadavg_initialized
= 0;
568 loadavg
[elem
++] = (double) info
.load_average
/ LOAD_SCALE
;
572 if (!getloadavg_initialized
)
576 #if !defined (LDAV_DONE) && defined (UMAX)
578 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
579 have a /dev/kmem. Information about the workings of the running kernel
580 can be gathered with inq_stats system calls.
581 We only know how to get the 1-minute average for this system. */
583 struct proc_summary proc_sum_data
;
584 struct stat_descr proc_info
;
586 register unsigned int i
, j
;
590 register unsigned int c
, i
;
591 struct cpu_config conf
;
592 struct stat_descr desc
;
595 desc
.sd_subsys
= SUBSYS_CPU
;
596 desc
.sd_type
= CPUTYPE_CONFIG
;
597 desc
.sd_addr
= (char *) &conf
;
598 desc
.sd_size
= sizeof conf
;
600 if (inq_stats (1, &desc
))
604 for (i
= 0; i
< conf
.config_maxclass
; ++i
)
606 struct class_stats stats
;
607 bzero ((char *) &stats
, sizeof stats
);
609 desc
.sd_type
= CPUTYPE_CLASS
;
611 desc
.sd_addr
= (char *) &stats
;
612 desc
.sd_size
= sizeof stats
;
614 if (inq_stats (1, &desc
))
617 c
+= stats
.class_numcpus
;
620 samples
= cpus
< 2 ? 3 : (2 * cpus
/ 3);
623 proc_info
.sd_next
= 0;
624 proc_info
.sd_subsys
= SUBSYS_PROC
;
625 proc_info
.sd_type
= PROCTYPE_SUMMARY
;
626 proc_info
.sd_addr
= (char *) &proc_sum_data
;
627 proc_info
.sd_size
= sizeof (struct proc_summary
);
628 proc_info
.sd_sizeused
= 0;
630 if (inq_stats (1, &proc_info
) != 0)
633 load
= proc_sum_data
.ps_nrunnable
;
635 for (i
= samples
- 1; i
> 0; --i
)
637 load
+= proc_sum_data
.ps_nrun
[j
];
638 if (j
++ == PS_NRUNSIZE
)
643 loadavg
[elem
++] = load
/ samples
/ cpus
;
646 #if !defined (LDAV_DONE) && defined (DGUX)
648 /* This call can return -1 for an error, but with good args
649 it's not supposed to fail. The first argument is for no
650 apparent reason of type `long int *'. */
651 dg_sys_info ((long int *) &load_info
,
652 DG_SYS_INFO_LOAD_INFO_TYPE
,
653 DG_SYS_INFO_LOAD_VERSION_0
);
656 loadavg
[elem
++] = load_info
.one_minute
;
658 loadavg
[elem
++] = load_info
.five_minute
;
660 loadavg
[elem
++] = load_info
.fifteen_minute
;
663 #if !defined (LDAV_DONE) && defined (apollo)
665 /* Apollo code from lisch@mentorg.com (Ray Lischner).
667 This system call is not documented. The load average is obtained as
668 three long integers, for the load average over the past minute,
669 five minutes, and fifteen minutes. Each value is a scaled integer,
670 with 16 bits of integer part and 16 bits of fraction part.
672 I'm not sure which operating system first supported this system call,
673 but I know that SR10.2 supports it. */
675 extern void proc1_$
get_loadav ();
676 unsigned long load_ave
[3];
678 proc1_$
get_loadav (load_ave
);
681 loadavg
[elem
++] = load_ave
[0] / 65536.0;
683 loadavg
[elem
++] = load_ave
[1] / 65536.0;
685 loadavg
[elem
++] = load_ave
[2] / 65536.0;
688 #if !defined (LDAV_DONE) && defined (OSF_MIPS)
691 struct tbl_loadavg load_ave
;
692 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
694 = (load_ave
.tl_lscale
== 0
695 ? load_ave
.tl_avenrun
.d
[0]
696 : (load_ave
.tl_avenrun
.l
[0] / (double) load_ave
.tl_lscale
));
697 #endif /* OSF_MIPS */
699 #if !defined (LDAV_DONE) && defined (OSF_ALPHA)
702 struct tbl_loadavg load_ave
;
703 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
704 for (elem
= 0; elem
< nelem
; elem
++)
706 = (load_ave
.tl_lscale
== 0
707 ? load_ave
.tl_avenrun
.d
[elem
]
708 : (load_ave
.tl_avenrun
.l
[elem
] / (double) load_ave
.tl_lscale
));
709 #endif /* OSF_ALPHA */
711 #if !defined (LDAV_DONE) && defined (VMS)
712 /* VMS specific code -- read from the Load Ave driver. */
714 LOAD_AVE_TYPE load_ave
[3];
715 static int getloadavg_initialized
= 0;
724 /* Ensure that there is a channel open to the load ave device. */
725 if (!getloadavg_initialized
)
727 /* Attempt to open the channel. */
729 descriptor
.dsc$w_length
= 18;
730 descriptor
.dsc$a_pointer
= "$$VMS_LOAD_AVERAGE";
732 $
DESCRIPTOR (descriptor
, "LAV0:");
734 if (sys$
assign (&descriptor
, &channel
, 0, 0) & 1)
735 getloadavg_initialized
= 1;
738 /* Read the load average vector. */
739 if (getloadavg_initialized
740 && !(sys$
qiow (0, channel
, IO$_READVBLK
, 0, 0, 0,
741 load_ave
, 12, 0, 0, 0, 0) & 1))
743 sys$
dassgn (channel
);
744 getloadavg_initialized
= 0;
747 if (!getloadavg_initialized
)
751 #if !defined (LDAV_DONE) && defined(LOAD_AVE_TYPE) && !defined(VMS)
753 /* UNIX-specific code -- read the average from /dev/kmem. */
755 #define LDAV_PRIVILEGED /* This code requires special installation. */
757 LOAD_AVE_TYPE load_ave
[3];
759 /* Get the address of LDAV_SYMBOL. */
764 strcpy (nl
[0].n_name
, LDAV_SYMBOL
);
765 strcpy (nl
[1].n_name
, "");
766 #else /* NLIST_STRUCT */
767 #ifdef NLIST_NAME_UNION
768 nl
[0].n_un
.n_name
= LDAV_SYMBOL
;
769 nl
[1].n_un
.n_name
= 0;
770 #else /* not NLIST_NAME_UNION */
771 nl
[0].n_name
= LDAV_SYMBOL
;
773 #endif /* not NLIST_NAME_UNION */
774 #endif /* NLIST_STRUCT */
777 if (nlist (KERNEL_FILE
, nl
) >= 0)
778 /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i. */
780 #ifdef FIXUP_KERNEL_SYMBOL_ADDR
781 FIXUP_KERNEL_SYMBOL_ADDR (nl
);
783 offset
= nl
[0].n_value
;
785 #endif /* !SUNOS_5 */
789 ldav_off
= sysmp (MP_KERNADDR
, MPKA_AVENRUN
);
791 offset
= (long) ldav_off
& 0x7fffffff;
795 /* Make sure we have /dev/kmem open. */
796 if (!getloadavg_initialized
)
799 channel
= open ("/dev/kmem", 0);
801 getloadavg_initialized
= 1;
803 /* We pass 0 for the kernel, corefile, and swapfile names
804 to use the currently running kernel. */
805 kd
= kvm_open (0, 0, 0, O_RDONLY
, 0);
808 /* nlist the currently running kernel. */
810 offset
= nl
[0].n_value
;
811 getloadavg_initialized
= 1;
816 /* If we can, get the load average values. */
817 if (offset
&& getloadavg_initialized
)
819 /* Try to read the load. */
821 if (lseek (channel
, offset
, 0) == -1L
822 || read (channel
, (char *) load_ave
, sizeof (load_ave
))
823 != sizeof (load_ave
))
826 getloadavg_initialized
= 0;
829 if (kvm_read (kd
, offset
, (char *) load_ave
, sizeof (load_ave
))
830 != sizeof (load_ave
))
833 getloadavg_initialized
= 0;
838 if (offset
== 0 || !getloadavg_initialized
)
840 #endif /* LOAD_AVE_TYPE and not VMS */
842 #if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS. */
844 loadavg
[elem
++] = LDAV_CVT (load_ave
[0]);
846 loadavg
[elem
++] = LDAV_CVT (load_ave
[1]);
848 loadavg
[elem
++] = LDAV_CVT (load_ave
[2]);
851 #endif /* !LDAV_DONE && LOAD_AVE_TYPE */
856 /* Set errno to zero to indicate that there was no particular error;
857 this function just can't work at all on this system. */
863 #endif /* ! HAVE_GETLOADAVG */
874 naptime
= atoi (argv
[1]);
881 errno
= 0; /* Don't be misled if it doesn't set errno. */
882 loads
= getloadavg (avg
, 3);
885 perror ("Error getting load average");
889 printf ("1-minute: %f ", avg
[0]);
891 printf ("5-minute: %f ", avg
[1]);
893 printf ("15-minute: %f ", avg
[2]);