Home | History | Annotate | Line # | Download | only in procfs
procfs_linux.c revision 1.36
      1  1.36    dogcow /*      $NetBSD: procfs_linux.c,v 1.36 2007/05/24 05:33:08 dogcow Exp $      */
      2   1.1      fvdl 
      3   1.1      fvdl /*
      4   1.1      fvdl  * Copyright (c) 2001 Wasabi Systems, Inc.
      5   1.1      fvdl  * All rights reserved.
      6   1.1      fvdl  *
      7   1.1      fvdl  * Written by Frank van der Linden for Wasabi Systems, Inc.
      8   1.1      fvdl  *
      9   1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     10   1.1      fvdl  * modification, are permitted provided that the following conditions
     11   1.1      fvdl  * are met:
     12   1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     13   1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     14   1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     16   1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     17   1.1      fvdl  * 3. All advertising materials mentioning features or use of this software
     18   1.1      fvdl  *    must display the following acknowledgement:
     19   1.1      fvdl  *      This product includes software developed for the NetBSD Project by
     20   1.1      fvdl  *      Wasabi Systems, Inc.
     21   1.1      fvdl  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22   1.1      fvdl  *    or promote products derived from this software without specific prior
     23   1.1      fvdl  *    written permission.
     24   1.1      fvdl  *
     25   1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26   1.1      fvdl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27   1.1      fvdl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28   1.1      fvdl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29   1.1      fvdl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30   1.1      fvdl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31   1.1      fvdl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32   1.1      fvdl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33   1.1      fvdl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34   1.1      fvdl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35   1.1      fvdl  * POSSIBILITY OF SUCH DAMAGE.
     36   1.1      fvdl  */
     37   1.3     lukem 
     38   1.3     lukem #include <sys/cdefs.h>
     39  1.36    dogcow __KERNEL_RCSID(0, "$NetBSD: procfs_linux.c,v 1.36 2007/05/24 05:33:08 dogcow Exp $");
     40   1.1      fvdl 
     41   1.1      fvdl #include <sys/param.h>
     42   1.1      fvdl #include <sys/systm.h>
     43   1.1      fvdl #include <sys/time.h>
     44   1.1      fvdl #include <sys/kernel.h>
     45   1.1      fvdl #include <sys/proc.h>
     46   1.1      fvdl #include <sys/vnode.h>
     47  1.11  christos #include <sys/exec.h>
     48   1.7  christos #include <sys/resource.h>
     49   1.7  christos #include <sys/resourcevar.h>
     50   1.7  christos #include <sys/signal.h>
     51   1.7  christos #include <sys/signalvar.h>
     52   1.7  christos #include <sys/tty.h>
     53  1.19  jdolecek #include <sys/malloc.h>
     54  1.19  jdolecek #include <sys/mount.h>
     55  1.26      manu #include <sys/conf.h>
     56   1.1      fvdl 
     57   1.1      fvdl #include <miscfs/procfs/procfs.h>
     58  1.11  christos #include <compat/linux/common/linux_exec.h>
     59   1.1      fvdl 
     60   1.1      fvdl #include <uvm/uvm_extern.h>
     61   1.7  christos #include <uvm/uvm.h>
     62   1.1      fvdl 
     63  1.26      manu extern struct devsw_conv *devsw_conv;
     64  1.26      manu extern int max_devsw_convs;
     65  1.26      manu 
     66   1.1      fvdl #define PGTOB(p)	((unsigned long)(p) << PAGE_SHIFT)
     67   1.1      fvdl #define PGTOKB(p)	((unsigned long)(p) << (PAGE_SHIFT - 10))
     68   1.1      fvdl 
     69  1.29  christos #define LBFSZ (8 * 1024)
     70  1.29  christos 
     71  1.35       agc static void
     72  1.35       agc get_proc_size_info(struct lwp *l, unsigned long *stext, unsigned long *etext, unsigned long *sstack)
     73  1.35       agc {
     74  1.35       agc 	struct proc *p = l->l_proc;
     75  1.35       agc 	struct vmspace *vm;
     76  1.35       agc 	struct vm_map *map;
     77  1.35       agc 	struct vm_map_entry *entry;
     78  1.35       agc 
     79  1.35       agc 	*stext = 0;
     80  1.35       agc 	*etext = 0;
     81  1.35       agc 	*sstack = 0;
     82  1.35       agc 
     83  1.35       agc 	proc_vmspace_getref(p, &vm);
     84  1.35       agc 	map = &vm->vm_map;
     85  1.35       agc 	vm_map_lock_read(map);
     86  1.35       agc 
     87  1.35       agc 	for (entry = map->header.next; entry != &map->header;
     88  1.35       agc 	    entry = entry->next) {
     89  1.35       agc 		if (UVM_ET_ISSUBMAP(entry))
     90  1.35       agc 			continue;
     91  1.35       agc 		/* assume text is the first entry */
     92  1.35       agc 		if (*stext == *etext) {
     93  1.35       agc 			*stext = entry->start;
     94  1.35       agc 			*etext = entry->end;
     95  1.35       agc 			break;
     96  1.35       agc 		}
     97  1.35       agc 	}
     98  1.35       agc #ifdef LINUX_USRSTACK
     99  1.35       agc 	if (strcmp(p->p_emul->e_name, "linux") == 0 &&
    100  1.35       agc 	    LINUX_USRSTACK < USRSTACK)
    101  1.35       agc 		*sstack = (unsigned long) LINUX_USRSTACK;
    102  1.35       agc 	else
    103  1.35       agc #endif
    104  1.35       agc 		*sstack = (unsigned long) USRSTACK;
    105  1.35       agc 
    106  1.35       agc 	/*
    107  1.35       agc 	 * jdk 1.6 compares low <= addr && addr < high
    108  1.35       agc 	 * if we put addr == high, then the test fails
    109  1.35       agc 	 * so eat one page.
    110  1.35       agc 	 */
    111  1.35       agc 	*sstack -= PAGE_SIZE;
    112  1.35       agc 
    113  1.35       agc 	vm_map_unlock_read(map);
    114  1.35       agc 	uvmspace_free(vm);
    115  1.35       agc }
    116  1.35       agc 
    117   1.1      fvdl /*
    118   1.1      fvdl  * Linux compatible /proc/meminfo. Only active when the -o linux
    119   1.1      fvdl  * mountflag is used.
    120   1.1      fvdl  */
    121   1.1      fvdl int
    122  1.30  christos procfs_domeminfo(struct lwp *curl, struct proc *p,
    123  1.30  christos     struct pfsnode *pfs, struct uio *uio)
    124   1.1      fvdl {
    125  1.29  christos 	char *bf;
    126  1.16    itojun 	int len;
    127  1.29  christos 	int error = 0;
    128  1.29  christos 
    129  1.29  christos 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    130   1.1      fvdl 
    131  1.29  christos 	len = snprintf(bf, LBFSZ,
    132   1.1      fvdl 		"        total:    used:    free:  shared: buffers: cached:\n"
    133   1.1      fvdl 		"Mem:  %8lu %8lu %8lu %8lu %8lu %8lu\n"
    134   1.1      fvdl 		"Swap: %8lu %8lu %8lu\n"
    135   1.1      fvdl 		"MemTotal:  %8lu kB\n"
    136   1.1      fvdl 		"MemFree:   %8lu kB\n"
    137   1.1      fvdl 		"MemShared: %8lu kB\n"
    138   1.1      fvdl 		"Buffers:   %8lu kB\n"
    139   1.1      fvdl 		"Cached:    %8lu kB\n"
    140  1.20     perry 		"SwapTotal: %8lu kB\n"
    141   1.1      fvdl 		"SwapFree:  %8lu kB\n",
    142   1.1      fvdl 		PGTOB(uvmexp.npages),
    143   1.1      fvdl 		PGTOB(uvmexp.npages - uvmexp.free),
    144   1.1      fvdl 		PGTOB(uvmexp.free),
    145   1.1      fvdl 		0L,
    146   1.4       chs 		PGTOB(uvmexp.filepages),
    147   1.4       chs 		PGTOB(uvmexp.anonpages + uvmexp.filepages + uvmexp.execpages),
    148   1.1      fvdl 		PGTOB(uvmexp.swpages),
    149   1.1      fvdl 		PGTOB(uvmexp.swpginuse),
    150   1.1      fvdl 		PGTOB(uvmexp.swpages - uvmexp.swpginuse),
    151   1.1      fvdl 		PGTOKB(uvmexp.npages),
    152   1.1      fvdl 		PGTOKB(uvmexp.free),
    153   1.1      fvdl 		0L,
    154   1.4       chs 		PGTOKB(uvmexp.filepages),
    155   1.4       chs 		PGTOKB(uvmexp.anonpages + uvmexp.filepages + uvmexp.execpages),
    156   1.1      fvdl 		PGTOKB(uvmexp.swpages),
    157   1.1      fvdl 		PGTOKB(uvmexp.swpages - uvmexp.swpginuse));
    158   1.1      fvdl 
    159   1.1      fvdl 	if (len == 0)
    160  1.29  christos 		goto out;
    161   1.1      fvdl 
    162  1.29  christos 	error = uiomove_frombuf(bf, len, uio);
    163  1.29  christos out:
    164  1.29  christos 	free(bf, M_TEMP);
    165  1.29  christos 	return error;
    166   1.1      fvdl }
    167   1.1      fvdl 
    168   1.7  christos /*
    169  1.26      manu  * Linux compatible /proc/devices. Only active when the -o linux
    170  1.26      manu  * mountflag is used.
    171  1.26      manu  */
    172  1.26      manu int
    173  1.30  christos procfs_dodevices(struct lwp *curl, struct proc *p,
    174  1.30  christos     struct pfsnode *pfs, struct uio *uio)
    175  1.26      manu {
    176  1.29  christos 	char *bf;
    177  1.26      manu 	int offset = 0;
    178  1.29  christos 	int i, error = ENAMETOOLONG;
    179  1.29  christos 
    180  1.31      elad 	/* XXX elad - may need filtering. */
    181  1.31      elad 
    182  1.29  christos 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    183  1.26      manu 
    184  1.29  christos 	offset += snprintf(&bf[offset], LBFSZ - offset, "Character devices:\n");
    185  1.29  christos 	if (offset >= LBFSZ)
    186  1.29  christos 		goto out;
    187  1.26      manu 
    188  1.26      manu 	for (i = 0; i < max_devsw_convs; i++) {
    189  1.26      manu 		if ((devsw_conv[i].d_name == NULL) ||
    190  1.26      manu 		    (devsw_conv[i].d_cmajor == -1))
    191  1.26      manu 			continue;
    192  1.26      manu 
    193  1.29  christos 		offset += snprintf(&bf[offset], LBFSZ - offset,
    194  1.26      manu 		    "%3d %s\n", devsw_conv[i].d_cmajor, devsw_conv[i].d_name);
    195  1.29  christos 		if (offset >= LBFSZ)
    196  1.29  christos 			goto out;
    197  1.26      manu 	}
    198  1.26      manu 
    199  1.29  christos 	offset += snprintf(&bf[offset], LBFSZ - offset, "\nBlock devices:\n");
    200  1.29  christos 	if (offset >= LBFSZ)
    201  1.29  christos 		goto out;
    202  1.26      manu 
    203  1.26      manu 	for (i = 0; i < max_devsw_convs; i++) {
    204  1.26      manu 		if ((devsw_conv[i].d_name == NULL) ||
    205  1.26      manu 		    (devsw_conv[i].d_bmajor == -1))
    206  1.26      manu 			continue;
    207  1.26      manu 
    208  1.29  christos 		offset += snprintf(&bf[offset], LBFSZ - offset,
    209  1.26      manu 		    "%3d %s\n", devsw_conv[i].d_bmajor, devsw_conv[i].d_name);
    210  1.29  christos 		if (offset >= LBFSZ)
    211  1.29  christos 			goto out;
    212  1.26      manu 	}
    213  1.26      manu 
    214  1.29  christos 	error = uiomove_frombuf(bf, offset, uio);
    215  1.29  christos out:
    216  1.29  christos 	free(bf, M_TEMP);
    217  1.29  christos 	return error;
    218  1.26      manu }
    219  1.26      manu 
    220  1.26      manu /*
    221  1.35       agc  * Linux compatible /proc/stat. Only active when the -o linux
    222  1.35       agc  * mountflag is used.
    223  1.35       agc  */
    224  1.35       agc int
    225  1.35       agc procfs_docpustat(struct lwp *curl, struct proc *p,
    226  1.35       agc     struct pfsnode *pfs, struct uio *uio)
    227  1.35       agc {
    228  1.35       agc 	struct timeval	 runtime;
    229  1.35       agc         struct cpu_info *ci;
    230  1.35       agc         CPU_INFO_ITERATOR cii;
    231  1.35       agc 	char		*bf;
    232  1.35       agc 	int	 	 error;
    233  1.35       agc 	int	 	 len;
    234  1.35       agc 	int	 	 i;
    235  1.35       agc 
    236  1.35       agc 	error = ENAMETOOLONG;
    237  1.35       agc 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    238  1.35       agc 
    239  1.35       agc 	len = snprintf(bf, LBFSZ,
    240  1.36    dogcow 		"cpu %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
    241  1.35       agc 		curcpu()->ci_schedstate.spc_cp_time[CP_USER],
    242  1.35       agc 		curcpu()->ci_schedstate.spc_cp_time[CP_NICE],
    243  1.35       agc 		curcpu()->ci_schedstate.spc_cp_time[CP_SYS] /*+ [CP_INTR]*/,
    244  1.35       agc 		curcpu()->ci_schedstate.spc_cp_time[CP_IDLE]);
    245  1.35       agc 	if (len == 0)
    246  1.35       agc 		goto out;
    247  1.35       agc 
    248  1.35       agc 	i = 0;
    249  1.35       agc 	for (CPU_INFO_FOREACH(cii, ci)) {
    250  1.35       agc 		len += snprintf(&bf[len], LBFSZ - len,
    251  1.36    dogcow 			"cpu%d %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64
    252  1.36    dogcow 			"\n", i,
    253  1.35       agc 			ci->ci_schedstate.spc_cp_time[CP_USER],
    254  1.35       agc 			ci->ci_schedstate.spc_cp_time[CP_NICE],
    255  1.35       agc 			ci->ci_schedstate.spc_cp_time[CP_SYS],
    256  1.35       agc 			ci->ci_schedstate.spc_cp_time[CP_IDLE]);
    257  1.35       agc 		if (len >= LBFSZ)
    258  1.35       agc 			goto out;
    259  1.35       agc 		i += 1;
    260  1.35       agc 	}
    261  1.35       agc 
    262  1.35       agc 	timersub(&curcpu()->ci_schedstate.spc_runtime, &boottime, &runtime);
    263  1.35       agc 	len += snprintf(&bf[len], LBFSZ - len,
    264  1.35       agc 			"disk 0 0 0 0\n"
    265  1.35       agc 			"page %u %u\n"
    266  1.35       agc 			"swap %u %u\n"
    267  1.35       agc 			"intr %u\n"
    268  1.35       agc 			"ctxt %u\n"
    269  1.35       agc 			"btime %lld\n",
    270  1.35       agc 			uvmexp.pageins, uvmexp.pdpageouts,
    271  1.35       agc 			uvmexp.pgswapin, uvmexp.pgswapout,
    272  1.35       agc 			uvmexp.intrs,
    273  1.35       agc 			uvmexp.swtch,
    274  1.35       agc 			(long long)boottime.tv_sec);
    275  1.35       agc 	if (len >= LBFSZ)
    276  1.35       agc 		goto out;
    277  1.35       agc 
    278  1.35       agc 	error = uiomove_frombuf(bf, len, uio);
    279  1.35       agc out:
    280  1.35       agc 	free(bf, M_TEMP);
    281  1.35       agc 	return error;
    282  1.35       agc }
    283  1.35       agc 
    284  1.35       agc /*
    285  1.35       agc  * Linux compatible /proc/loadavg. Only active when the -o linux
    286  1.35       agc  * mountflag is used.
    287  1.35       agc  */
    288  1.35       agc int
    289  1.35       agc procfs_doloadavg(struct lwp *curl, struct proc *p,
    290  1.35       agc     struct pfsnode *pfs, struct uio *uio)
    291  1.35       agc {
    292  1.35       agc 	char	*bf;
    293  1.35       agc 	int 	 error;
    294  1.35       agc 	int 	 len;
    295  1.35       agc 
    296  1.35       agc 	error = ENAMETOOLONG;
    297  1.35       agc 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    298  1.35       agc 
    299  1.35       agc 	averunnable.fscale = FSCALE;
    300  1.35       agc 	len = snprintf(bf, LBFSZ,
    301  1.35       agc 	        "%d.%02d %d.%02d %d.%02d %d/%d %d\n",
    302  1.35       agc 		(int)(averunnable.ldavg[0] / averunnable.fscale),
    303  1.35       agc 		(int)(averunnable.ldavg[0] * 100 / averunnable.fscale % 100),
    304  1.35       agc 		(int)(averunnable.ldavg[1] / averunnable.fscale),
    305  1.35       agc 		(int)(averunnable.ldavg[1] * 100 / averunnable.fscale % 100),
    306  1.35       agc 		(int)(averunnable.ldavg[2] / averunnable.fscale),
    307  1.35       agc 		(int)(averunnable.ldavg[2] * 100 / averunnable.fscale % 100),
    308  1.35       agc 		1,		/* number of ONPROC processes */
    309  1.35       agc 		nprocs,
    310  1.35       agc 		30000);		/* last pid */
    311  1.35       agc 	if (len == 0)
    312  1.35       agc 		goto out;
    313  1.35       agc 
    314  1.35       agc 	error = uiomove_frombuf(bf, len, uio);
    315  1.35       agc out:
    316  1.35       agc 	free(bf, M_TEMP);
    317  1.35       agc 	return error;
    318  1.35       agc }
    319  1.35       agc 
    320  1.35       agc /*
    321  1.35       agc  * Linux compatible /proc/<pid>/statm. Only active when the -o linux
    322  1.35       agc  * mountflag is used.
    323  1.35       agc  */
    324  1.35       agc int
    325  1.35       agc procfs_do_pid_statm(struct lwp *curl, struct lwp *l,
    326  1.35       agc     struct pfsnode *pfs, struct uio *uio)
    327  1.35       agc {
    328  1.35       agc 	unsigned long	 stext = 0, etext = 0, sstack = 0;
    329  1.35       agc 	struct proc	*p = l->l_proc;
    330  1.35       agc 	struct rusage	*ru = &p->p_stats->p_ru;
    331  1.35       agc 	char		*bf;
    332  1.35       agc 	int	 	 error;
    333  1.35       agc 	int	 	 len;
    334  1.35       agc 
    335  1.35       agc 	error = ENAMETOOLONG;
    336  1.35       agc 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    337  1.35       agc 
    338  1.35       agc 	get_proc_size_info(l, &stext, &etext, &sstack);
    339  1.35       agc 
    340  1.35       agc 	len = snprintf(bf, LBFSZ,
    341  1.35       agc 	        "%lu %lu %lu %lu %lu %lu %lu\n",
    342  1.35       agc 		(ru->ru_ixrss + ru->ru_idrss + ru->ru_isrss), /* size */
    343  1.35       agc 		ru->ru_maxrss,	/* resident */
    344  1.35       agc 		ru->ru_ixrss,	/* shared */
    345  1.35       agc 		stext,
    346  1.35       agc 		etext,
    347  1.35       agc 		sstack,
    348  1.35       agc 		(unsigned long) 0);
    349  1.35       agc 	if (len == 0)
    350  1.35       agc 		goto out;
    351  1.35       agc 
    352  1.35       agc 	error = uiomove_frombuf(bf, len, uio);
    353  1.35       agc out:
    354  1.35       agc 	free(bf, M_TEMP);
    355  1.35       agc 	return error;
    356  1.35       agc }
    357  1.35       agc 
    358  1.35       agc /*
    359   1.7  christos  * Linux compatible /proc/<pid>/stat. Only active when the -o linux
    360   1.7  christos  * mountflag is used.
    361   1.7  christos  */
    362   1.7  christos int
    363  1.30  christos procfs_do_pid_stat(struct lwp *curl, struct lwp *l,
    364  1.30  christos     struct pfsnode *pfs, struct uio *uio)
    365   1.7  christos {
    366  1.29  christos 	char *bf;
    367  1.25  christos 	struct proc *p = l->l_proc;
    368  1.16    itojun 	int len;
    369   1.7  christos 	struct tty *tty = p->p_session->s_ttyp;
    370   1.7  christos 	struct rusage *ru = &p->p_stats->p_ru;
    371   1.7  christos 	struct rusage *cru = &p->p_stats->p_cru;
    372   1.7  christos 	unsigned long stext = 0, etext = 0, sstack = 0;
    373  1.32        ad 	struct timeval rt;
    374  1.29  christos 	int error = 0;
    375  1.29  christos 
    376  1.29  christos 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    377   1.7  christos 
    378  1.35       agc 	get_proc_size_info(l, &stext, &etext, &sstack);
    379  1.32        ad 
    380  1.33        ad 	mutex_enter(&proclist_lock);
    381  1.32        ad 	mutex_enter(&p->p_mutex);
    382  1.32        ad 	mutex_enter(&p->p_smutex);
    383  1.32        ad 
    384  1.32        ad 	calcru(p, NULL, NULL, NULL, &rt);
    385   1.7  christos 
    386  1.29  christos 	len = snprintf(bf, LBFSZ,
    387   1.7  christos 	    "%d (%s) %c %d %d %d %d %d "
    388   1.7  christos 	    "%u "
    389   1.7  christos 	    "%lu %lu %lu %lu %lu %lu %lu %lu "
    390   1.7  christos 	    "%d %d %d "
    391   1.8   hannken 	    "%lu %lu %lu %lu %" PRIu64 " "
    392   1.7  christos 	    "%lu %lu %lu "
    393   1.7  christos 	    "%u %u "
    394   1.7  christos 	    "%u %u %u %u "
    395   1.7  christos 	    "%lu %lu %lu %d %d\n",
    396   1.7  christos 
    397   1.7  christos 	    p->p_pid,
    398   1.7  christos 	    p->p_comm,
    399   1.7  christos 	    "0IR3SZD"[(p->p_stat > 6) ? 0 : (int)p->p_stat],
    400  1.28      elad 	    (p->p_pptr != NULL) ? p->p_pptr->p_pid : 0,
    401   1.7  christos 
    402   1.7  christos 	    p->p_pgid,
    403   1.7  christos 	    p->p_session->s_sid,
    404   1.7  christos 	    tty ? tty->t_dev : 0,
    405  1.15  christos 	    (tty && tty->t_pgrp) ? tty->t_pgrp->pg_id : 0,
    406   1.7  christos 
    407   1.7  christos 	    p->p_flag,
    408   1.7  christos 
    409   1.7  christos 	    ru->ru_minflt,
    410   1.7  christos 	    cru->ru_minflt,
    411   1.7  christos 	    ru->ru_majflt,
    412   1.7  christos 	    cru->ru_majflt,
    413   1.7  christos 	    ru->ru_utime.tv_sec,
    414   1.7  christos 	    ru->ru_stime.tv_sec,
    415   1.7  christos 	    cru->ru_utime.tv_sec,
    416   1.7  christos 	    cru->ru_stime.tv_sec,
    417   1.7  christos 
    418   1.7  christos 	    p->p_nice,					/* XXX: priority */
    419   1.7  christos 	    p->p_nice,
    420   1.7  christos 	    0,
    421   1.7  christos 
    422  1.32        ad 	    rt.tv_sec,
    423   1.7  christos 	    p->p_stats->p_start.tv_sec,
    424   1.7  christos 	    ru->ru_ixrss + ru->ru_idrss + ru->ru_isrss,
    425   1.7  christos 	    ru->ru_maxrss,
    426   1.7  christos 	    p->p_rlimit[RLIMIT_RSS].rlim_cur,
    427   1.7  christos 
    428   1.7  christos 	    stext,					/* start code */
    429   1.7  christos 	    etext,					/* end code */
    430   1.7  christos 	    sstack,					/* mm start stack */
    431   1.7  christos 	    0,						/* XXX: pc */
    432   1.7  christos 	    0,						/* XXX: sp */
    433  1.32        ad 	    p->p_sigpend.sp_set.__bits[0],		/* XXX: pending */
    434  1.32        ad 	    0,						/* XXX: held */
    435   1.7  christos 	    p->p_sigctx.ps_sigignore.__bits[0],		/* ignored */
    436   1.7  christos 	    p->p_sigctx.ps_sigcatch.__bits[0],		/* caught */
    437   1.7  christos 
    438   1.7  christos 	    (unsigned long)(intptr_t)l->l_wchan,
    439   1.7  christos 	    ru->ru_nvcsw,
    440   1.7  christos 	    ru->ru_nivcsw,
    441   1.7  christos 	    p->p_exitsig,
    442   1.7  christos 	    0);						/* XXX: processor */
    443   1.7  christos 
    444  1.32        ad 	mutex_exit(&p->p_smutex);
    445  1.32        ad 	mutex_exit(&p->p_mutex);
    446  1.33        ad 	mutex_exit(&proclist_lock);
    447  1.32        ad 
    448   1.7  christos 	if (len == 0)
    449  1.29  christos 		goto out;
    450   1.7  christos 
    451  1.29  christos 	error = uiomove_frombuf(bf, len, uio);
    452  1.29  christos out:
    453  1.29  christos 	free(bf, M_TEMP);
    454  1.29  christos 	return error;
    455   1.7  christos }
    456   1.7  christos 
    457   1.1      fvdl int
    458  1.30  christos procfs_docpuinfo(struct lwp *curl, struct proc *p,
    459  1.30  christos     struct pfsnode *pfs, struct uio *uio)
    460   1.1      fvdl {
    461  1.29  christos 	int len = LBFSZ;
    462  1.23  christos 	char *bf = malloc(len, M_TEMP, M_WAITOK);
    463  1.21  christos 	int error;
    464   1.1      fvdl 
    465  1.23  christos 	if (procfs_getcpuinfstr(bf, &len) < 0) {
    466  1.21  christos 		error = ENOSPC;
    467  1.21  christos 		goto done;
    468  1.21  christos 	}
    469   1.5       jrf 
    470  1.21  christos 	if (len == 0) {
    471  1.21  christos 		error = 0;
    472  1.21  christos 		goto done;
    473  1.21  christos 	}
    474   1.5       jrf 
    475  1.23  christos 	error = uiomove_frombuf(bf, len, uio);
    476  1.21  christos done:
    477  1.23  christos 	free(bf, M_TEMP);
    478  1.21  christos 	return error;
    479   1.5       jrf }
    480   1.5       jrf 
    481   1.5       jrf int
    482  1.30  christos procfs_douptime(struct lwp *curl, struct proc *p,
    483  1.30  christos     struct pfsnode *pfs, struct uio *uio)
    484   1.5       jrf {
    485  1.29  christos 	char *bf;
    486  1.16    itojun 	int len;
    487   1.5       jrf 	struct timeval runtime;
    488   1.5       jrf 	u_int64_t idle;
    489  1.29  christos 	int error = 0;
    490  1.29  christos 
    491  1.29  christos 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    492   1.5       jrf 
    493   1.5       jrf 	timersub(&curcpu()->ci_schedstate.spc_runtime, &boottime, &runtime);
    494   1.5       jrf 	idle = curcpu()->ci_schedstate.spc_cp_time[CP_IDLE];
    495  1.29  christos 	len = snprintf(bf, LBFSZ,
    496  1.16    itojun 	    "%lu.%02lu %" PRIu64 ".%02" PRIu64 "\n",
    497  1.16    itojun 	    runtime.tv_sec, runtime.tv_usec / 10000,
    498  1.16    itojun 	    idle / hz, (((idle % hz) * 100) / hz) % 100);
    499   1.1      fvdl 
    500   1.1      fvdl 	if (len == 0)
    501  1.29  christos 		goto out;
    502   1.1      fvdl 
    503  1.29  christos 	error = uiomove_frombuf(bf, len, uio);
    504  1.29  christos out:
    505  1.29  christos 	free(bf, M_TEMP);
    506  1.29  christos 	return error;
    507   1.1      fvdl }
    508  1.19  jdolecek 
    509  1.19  jdolecek int
    510  1.30  christos procfs_domounts(struct lwp *curl, struct proc *p,
    511  1.30  christos     struct pfsnode *pfs, struct uio *uio)
    512  1.19  jdolecek {
    513  1.29  christos 	char *bf, *mtab = NULL;
    514  1.19  jdolecek 	const char *fsname;
    515  1.19  jdolecek 	size_t len, mtabsz = 0;
    516  1.19  jdolecek 	struct mount *mp, *nmp;
    517  1.19  jdolecek 	struct statvfs *sfs;
    518  1.19  jdolecek 	int error = 0;
    519  1.19  jdolecek 
    520  1.31      elad 	/* XXX elad - may need filtering. */
    521  1.31      elad 
    522  1.29  christos 	bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
    523  1.19  jdolecek 	simple_lock(&mountlist_slock);
    524  1.19  jdolecek 	for (mp = CIRCLEQ_FIRST(&mountlist); mp != (void *)&mountlist;
    525  1.19  jdolecek 	     mp = nmp) {
    526  1.19  jdolecek 		if (vfs_busy(mp, LK_NOWAIT, &mountlist_slock)) {
    527  1.19  jdolecek 			nmp = CIRCLEQ_NEXT(mp, mnt_list);
    528  1.19  jdolecek 			continue;
    529  1.19  jdolecek 		}
    530  1.19  jdolecek 
    531  1.19  jdolecek 		sfs = &mp->mnt_stat;
    532  1.19  jdolecek 
    533  1.19  jdolecek 		/* Linux uses different names for some filesystems */
    534  1.19  jdolecek 		fsname = sfs->f_fstypename;
    535  1.19  jdolecek 		if (strcmp(fsname, "procfs") == 0)
    536  1.19  jdolecek 			fsname = "proc";
    537  1.19  jdolecek 		else if (strcmp(fsname, "ext2fs") == 0)
    538  1.19  jdolecek 			fsname = "ext2";
    539  1.20     perry 
    540  1.29  christos 		len = snprintf(bf, LBFSZ, "%s %s %s %s%s%s%s%s%s 0 0\n",
    541  1.19  jdolecek 			sfs->f_mntfromname,
    542  1.19  jdolecek 			sfs->f_mntonname,
    543  1.19  jdolecek 			fsname,
    544  1.19  jdolecek 			(mp->mnt_flag & MNT_RDONLY) ? "ro" : "rw",
    545  1.19  jdolecek 			(mp->mnt_flag & MNT_NOSUID) ? ",nosuid" : "",
    546  1.19  jdolecek 			(mp->mnt_flag & MNT_NOEXEC) ? ",noexec" : "",
    547  1.19  jdolecek 			(mp->mnt_flag & MNT_NODEV) ? ",nodev" : "",
    548  1.19  jdolecek 			(mp->mnt_flag & MNT_SYNCHRONOUS) ? ",sync" : "",
    549  1.19  jdolecek 			(mp->mnt_flag & MNT_NOATIME) ? ",noatime" : ""
    550  1.19  jdolecek 			);
    551  1.19  jdolecek 
    552  1.19  jdolecek 		mtab = realloc(mtab, mtabsz + len, M_TEMP, M_WAITOK);
    553  1.23  christos 		memcpy(mtab + mtabsz, bf, len);
    554  1.19  jdolecek 		mtabsz += len;
    555  1.19  jdolecek 
    556  1.19  jdolecek 		simple_lock(&mountlist_slock);
    557  1.19  jdolecek 		nmp = CIRCLEQ_NEXT(mp, mnt_list);
    558  1.19  jdolecek 		vfs_unbusy(mp);
    559  1.19  jdolecek 	}
    560  1.19  jdolecek 	simple_unlock(&mountlist_slock);
    561  1.29  christos 	free(bf, M_TEMP);
    562  1.19  jdolecek 
    563  1.19  jdolecek 	if (mtabsz > 0) {
    564  1.19  jdolecek 		error = uiomove_frombuf(mtab, mtabsz, uio);
    565  1.19  jdolecek 		free(mtab, M_TEMP);
    566  1.19  jdolecek 	}
    567  1.19  jdolecek 
    568  1.19  jdolecek 	return error;
    569  1.19  jdolecek }
    570