2010-09-14 23:25:25 +02:00
|
|
|
/* ProcFS - root.c - by Alen Stojanov and David van Moolenbroek */
|
|
|
|
|
|
|
|
#include "inc.h"
|
2013-01-13 17:20:11 +01:00
|
|
|
|
|
|
|
#if defined (__i386__)
|
2010-09-14 23:25:25 +02:00
|
|
|
#include <machine/pci.h>
|
2013-01-13 17:20:11 +01:00
|
|
|
#endif
|
2011-12-11 15:24:28 +01:00
|
|
|
#include <minix/dmap.h>
|
2010-10-26 23:08:00 +02:00
|
|
|
#include "cpuinfo.h"
|
2010-09-14 23:25:25 +02:00
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_hz(void);
|
|
|
|
static void root_uptime(void);
|
|
|
|
static void root_loadavg(void);
|
|
|
|
static void root_kinfo(void);
|
|
|
|
static void root_meminfo(void);
|
2013-01-13 17:20:11 +01:00
|
|
|
#if defined(__i386__)
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_pci(void);
|
2013-01-13 17:20:11 +01:00
|
|
|
#endif
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_dmap(void);
|
2012-09-26 17:14:14 +02:00
|
|
|
static void root_ipcvecs(void);
|
2013-08-20 01:39:47 +02:00
|
|
|
static void root_mounts(void);
|
2010-09-14 23:25:25 +02:00
|
|
|
|
|
|
|
struct file root_files[] = {
|
|
|
|
{ "hz", REG_ALL_MODE, (data_t) root_hz },
|
|
|
|
{ "uptime", REG_ALL_MODE, (data_t) root_uptime },
|
|
|
|
{ "loadavg", REG_ALL_MODE, (data_t) root_loadavg },
|
|
|
|
{ "kinfo", REG_ALL_MODE, (data_t) root_kinfo },
|
|
|
|
{ "meminfo", REG_ALL_MODE, (data_t) root_meminfo },
|
2013-01-13 17:20:11 +01:00
|
|
|
#if defined(__i386__)
|
2010-09-14 23:25:25 +02:00
|
|
|
{ "pci", REG_ALL_MODE, (data_t) root_pci },
|
2013-01-13 17:20:11 +01:00
|
|
|
#endif
|
2011-12-11 15:24:28 +01:00
|
|
|
{ "dmap", REG_ALL_MODE, (data_t) root_dmap },
|
2013-01-13 17:20:11 +01:00
|
|
|
#if defined(__i386__)
|
2010-10-26 23:08:00 +02:00
|
|
|
{ "cpuinfo", REG_ALL_MODE, (data_t) root_cpuinfo },
|
2013-01-13 17:20:11 +01:00
|
|
|
#endif
|
2012-09-26 17:14:14 +02:00
|
|
|
{ "ipcvecs", REG_ALL_MODE, (data_t) root_ipcvecs },
|
2012-11-22 23:00:00 +01:00
|
|
|
{ "mounts", REG_ALL_MODE, (data_t) root_mounts },
|
2010-09-14 23:25:25 +02:00
|
|
|
{ NULL, 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_hz *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_hz(void)
|
2010-09-14 23:25:25 +02:00
|
|
|
{
|
|
|
|
/* Print the system clock frequency.
|
|
|
|
*/
|
|
|
|
|
|
|
|
buf_printf("%lu\n", (long) sys_hz());
|
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_loadavg *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_loadavg(void)
|
2010-09-14 23:25:25 +02:00
|
|
|
{
|
|
|
|
/* Print load averages.
|
|
|
|
*/
|
2011-04-27 15:00:52 +02:00
|
|
|
struct load loads[3];
|
|
|
|
ldiv_t avg[3];
|
2010-09-14 23:25:25 +02:00
|
|
|
|
2011-04-27 15:00:52 +02:00
|
|
|
if (procfs_getloadavg(loads, 3) != 3)
|
2010-09-14 23:25:25 +02:00
|
|
|
return;
|
|
|
|
|
2011-04-27 15:00:52 +02:00
|
|
|
avg[0] = ldiv(100L * loads[0].proc_load / loads[0].ticks, 100);
|
|
|
|
avg[1] = ldiv(100L * loads[1].proc_load / loads[1].ticks, 100);
|
|
|
|
avg[2] = ldiv(100L * loads[2].proc_load / loads[2].ticks, 100);
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
buf_printf("%ld.%02ld %ld.%02ld %ld.%02ld\n",
|
2011-04-27 15:00:52 +02:00
|
|
|
avg[0].quot, avg[0].rem, avg[1].quot, avg[1].rem,
|
|
|
|
avg[2].quot, avg[2].rem);
|
2010-09-14 23:25:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_uptime *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_uptime(void)
|
2010-09-14 23:25:25 +02:00
|
|
|
{
|
|
|
|
/* Print the current uptime.
|
|
|
|
*/
|
|
|
|
clock_t ticks;
|
2011-04-27 15:00:52 +02:00
|
|
|
ldiv_t division;
|
2010-09-14 23:25:25 +02:00
|
|
|
|
2013-03-29 22:48:22 +01:00
|
|
|
if (getticks(&ticks) != OK)
|
2010-09-14 23:25:25 +02:00
|
|
|
return;
|
2011-04-27 15:00:52 +02:00
|
|
|
division = ldiv(100L * ticks / sys_hz(), 100L);
|
2010-09-14 23:25:25 +02:00
|
|
|
|
2011-04-27 15:00:52 +02:00
|
|
|
buf_printf("%ld.%0.2ld\n", division.quot, division.rem);
|
2010-09-14 23:25:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_kinfo *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_kinfo(void)
|
2010-09-14 23:25:25 +02:00
|
|
|
{
|
|
|
|
/* Print general kernel information.
|
|
|
|
*/
|
|
|
|
struct kinfo kinfo;
|
|
|
|
|
|
|
|
if (sys_getkinfo(&kinfo) != OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
buf_printf("%u %u\n", kinfo.nr_procs, kinfo.nr_tasks);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_meminfo *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_meminfo(void)
|
2010-09-14 23:25:25 +02:00
|
|
|
{
|
|
|
|
/* Print general memory information.
|
|
|
|
*/
|
|
|
|
struct vm_stats_info vsi;
|
|
|
|
|
|
|
|
if (vm_info_stats(&vsi) != OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
buf_printf("%u %lu %lu %lu %lu\n", vsi.vsi_pagesize,
|
|
|
|
vsi.vsi_total, vsi.vsi_free, vsi.vsi_largest, vsi.vsi_cached);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_pci *
|
|
|
|
*===========================================================================*/
|
2013-01-13 17:20:11 +01:00
|
|
|
#if defined(__i386__)
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_pci(void)
|
2010-09-14 23:25:25 +02:00
|
|
|
{
|
|
|
|
/* Print information about PCI devices present in the system.
|
|
|
|
*/
|
|
|
|
u16_t vid, did;
|
|
|
|
u8_t bcr, scr, pifr;
|
|
|
|
char *slot_name, *dev_name;
|
|
|
|
int r, devind;
|
|
|
|
static int first = TRUE;
|
|
|
|
|
|
|
|
/* This should be taken care of behind the scenes by the PCI lib. */
|
|
|
|
if (first) {
|
|
|
|
pci_init();
|
|
|
|
first = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Iterate over all devices, printing info for each of them. */
|
|
|
|
r = pci_first_dev(&devind, &vid, &did);
|
|
|
|
while (r == 1) {
|
|
|
|
slot_name = pci_slot_name(devind);
|
|
|
|
dev_name = pci_dev_name(vid, did);
|
|
|
|
|
|
|
|
bcr = pci_attr_r8(devind, PCI_BCR);
|
|
|
|
scr = pci_attr_r8(devind, PCI_SCR);
|
|
|
|
pifr = pci_attr_r8(devind, PCI_PIFR);
|
|
|
|
|
|
|
|
buf_printf("%s %x/%x/%x %04X:%04X %s\n",
|
|
|
|
slot_name ? slot_name : "-",
|
|
|
|
bcr, scr, pifr, vid, did,
|
|
|
|
dev_name ? dev_name : "");
|
|
|
|
|
|
|
|
r = pci_next_dev(&devind, &vid, &did);
|
|
|
|
}
|
|
|
|
}
|
2013-01-13 17:20:11 +01:00
|
|
|
#endif /* defined(__i386__) */
|
2011-12-11 15:24:28 +01:00
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_dmap *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
static void root_dmap(void)
|
2011-12-11 15:24:28 +01:00
|
|
|
{
|
|
|
|
struct dmap dmap[NR_DEVICES];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (getsysinfo(VFS_PROC_NR, SI_DMAP_TAB, dmap, sizeof(dmap)) != OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < NR_DEVICES; i++) {
|
|
|
|
if (dmap[i].dmap_driver == NONE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
buf_printf("%u %s %u\n", i, dmap[i].dmap_label,
|
|
|
|
dmap[i].dmap_driver);
|
|
|
|
}
|
|
|
|
}
|
2012-09-26 17:14:14 +02:00
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* root_ipcvecs *
|
|
|
|
*===========================================================================*/
|
|
|
|
static void root_ipcvecs(void)
|
|
|
|
{
|
|
|
|
extern struct minix_kerninfo *_minix_kerninfo;
|
|
|
|
extern struct minix_ipcvecs _minix_ipcvecs;
|
|
|
|
|
|
|
|
/* only print this if the kernel provides the info; otherwise binaries
|
|
|
|
* will be using their own in-libc vectors that are normal symbols in the
|
|
|
|
* binary.
|
|
|
|
*/
|
|
|
|
if(!_minix_kerninfo || !(_minix_kerninfo->ki_flags & MINIX_KIF_IPCVECS))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* print the vectors with an descriptive name and the additional (k)
|
|
|
|
* to distinguish them from regular symbols.
|
|
|
|
*/
|
|
|
|
#define PRINT_ENTRYPOINT(name) \
|
2012-11-14 23:00:29 +01:00
|
|
|
buf_printf("%08lx T %s(k)\n", _minix_ipcvecs.name, #name)
|
2012-09-26 17:14:14 +02:00
|
|
|
|
|
|
|
PRINT_ENTRYPOINT(sendrec);
|
|
|
|
PRINT_ENTRYPOINT(send);
|
|
|
|
PRINT_ENTRYPOINT(notify);
|
|
|
|
PRINT_ENTRYPOINT(senda);
|
|
|
|
PRINT_ENTRYPOINT(sendnb);
|
|
|
|
PRINT_ENTRYPOINT(receive);
|
|
|
|
PRINT_ENTRYPOINT(do_kernel_call);
|
|
|
|
}
|
|
|
|
|
2013-08-20 01:39:47 +02:00
|
|
|
/*===========================================================================*
|
|
|
|
* root_mounts *
|
|
|
|
*===========================================================================*/
|
|
|
|
static void
|
|
|
|
root_mounts(void)
|
|
|
|
{
|
|
|
|
struct statvfs buf[NR_MNTS];
|
|
|
|
int i, count;
|
|
|
|
|
|
|
|
if ((count = getvfsstat(buf, sizeof(buf), ST_NOWAIT)) < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
buf_printf("%s on %s type %s (%s)\n", buf[i].f_mntfromname,
|
|
|
|
buf[i].f_mntonname, buf[i].f_fstypename,
|
|
|
|
(buf[i].f_flag & ST_RDONLY) ? "ro" : "rw");
|
|
|
|
}
|
|
|
|
}
|