procfs_linux.c revision 1.54.8.1 1 1.54.8.1 bouyer /* $NetBSD: procfs_linux.c,v 1.54.8.1 2009/10/27 21:42:33 bouyer 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.54.8.1 bouyer __KERNEL_RCSID(0, "$NetBSD: procfs_linux.c,v 1.54.8.1 2009/10/27 21:42:33 bouyer 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.54 ad #include <miscfs/specfs/specdev.h>
59 1.54 ad
60 1.11 christos #include <compat/linux/common/linux_exec.h>
61 1.1 fvdl
62 1.1 fvdl #include <uvm/uvm_extern.h>
63 1.7 christos #include <uvm/uvm.h>
64 1.1 fvdl
65 1.26 manu extern struct devsw_conv *devsw_conv;
66 1.26 manu extern int max_devsw_convs;
67 1.26 manu
68 1.1 fvdl #define PGTOB(p) ((unsigned long)(p) << PAGE_SHIFT)
69 1.1 fvdl #define PGTOKB(p) ((unsigned long)(p) << (PAGE_SHIFT - 10))
70 1.1 fvdl
71 1.29 christos #define LBFSZ (8 * 1024)
72 1.29 christos
73 1.35 agc static void
74 1.35 agc get_proc_size_info(struct lwp *l, unsigned long *stext, unsigned long *etext, unsigned long *sstack)
75 1.35 agc {
76 1.35 agc struct proc *p = l->l_proc;
77 1.35 agc struct vmspace *vm;
78 1.35 agc struct vm_map *map;
79 1.35 agc struct vm_map_entry *entry;
80 1.35 agc
81 1.35 agc *stext = 0;
82 1.35 agc *etext = 0;
83 1.35 agc *sstack = 0;
84 1.35 agc
85 1.35 agc proc_vmspace_getref(p, &vm);
86 1.35 agc map = &vm->vm_map;
87 1.35 agc vm_map_lock_read(map);
88 1.35 agc
89 1.35 agc for (entry = map->header.next; entry != &map->header;
90 1.35 agc entry = entry->next) {
91 1.35 agc if (UVM_ET_ISSUBMAP(entry))
92 1.35 agc continue;
93 1.35 agc /* assume text is the first entry */
94 1.35 agc if (*stext == *etext) {
95 1.35 agc *stext = entry->start;
96 1.35 agc *etext = entry->end;
97 1.35 agc break;
98 1.35 agc }
99 1.35 agc }
100 1.44 christos #ifdef LINUX_USRSTACK32
101 1.44 christos if (strcmp(p->p_emul->e_name, "linux32") == 0 &&
102 1.44 christos LINUX_USRSTACK32 < USRSTACK32)
103 1.44 christos *sstack = (unsigned long)LINUX_USRSTACK32;
104 1.44 christos else
105 1.44 christos #endif
106 1.35 agc #ifdef LINUX_USRSTACK
107 1.35 agc if (strcmp(p->p_emul->e_name, "linux") == 0 &&
108 1.35 agc LINUX_USRSTACK < USRSTACK)
109 1.44 christos *sstack = (unsigned long)LINUX_USRSTACK;
110 1.44 christos else
111 1.44 christos #endif
112 1.44 christos #ifdef USRSTACK32
113 1.44 christos if (strstr(p->p_emul->e_name, "32") != NULL)
114 1.44 christos *sstack = (unsigned long)USRSTACK32;
115 1.35 agc else
116 1.35 agc #endif
117 1.44 christos *sstack = (unsigned long)USRSTACK;
118 1.35 agc
119 1.35 agc /*
120 1.35 agc * jdk 1.6 compares low <= addr && addr < high
121 1.35 agc * if we put addr == high, then the test fails
122 1.35 agc * so eat one page.
123 1.35 agc */
124 1.35 agc *sstack -= PAGE_SIZE;
125 1.35 agc
126 1.35 agc vm_map_unlock_read(map);
127 1.35 agc uvmspace_free(vm);
128 1.35 agc }
129 1.35 agc
130 1.1 fvdl /*
131 1.1 fvdl * Linux compatible /proc/meminfo. Only active when the -o linux
132 1.1 fvdl * mountflag is used.
133 1.1 fvdl */
134 1.1 fvdl int
135 1.30 christos procfs_domeminfo(struct lwp *curl, struct proc *p,
136 1.30 christos struct pfsnode *pfs, struct uio *uio)
137 1.1 fvdl {
138 1.29 christos char *bf;
139 1.16 itojun int len;
140 1.29 christos int error = 0;
141 1.29 christos
142 1.29 christos bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
143 1.1 fvdl
144 1.29 christos len = snprintf(bf, LBFSZ,
145 1.1 fvdl " total: used: free: shared: buffers: cached:\n"
146 1.1 fvdl "Mem: %8lu %8lu %8lu %8lu %8lu %8lu\n"
147 1.1 fvdl "Swap: %8lu %8lu %8lu\n"
148 1.1 fvdl "MemTotal: %8lu kB\n"
149 1.1 fvdl "MemFree: %8lu kB\n"
150 1.1 fvdl "MemShared: %8lu kB\n"
151 1.1 fvdl "Buffers: %8lu kB\n"
152 1.1 fvdl "Cached: %8lu kB\n"
153 1.20 perry "SwapTotal: %8lu kB\n"
154 1.1 fvdl "SwapFree: %8lu kB\n",
155 1.1 fvdl PGTOB(uvmexp.npages),
156 1.1 fvdl PGTOB(uvmexp.npages - uvmexp.free),
157 1.1 fvdl PGTOB(uvmexp.free),
158 1.1 fvdl 0L,
159 1.4 chs PGTOB(uvmexp.filepages),
160 1.4 chs PGTOB(uvmexp.anonpages + uvmexp.filepages + uvmexp.execpages),
161 1.1 fvdl PGTOB(uvmexp.swpages),
162 1.1 fvdl PGTOB(uvmexp.swpginuse),
163 1.1 fvdl PGTOB(uvmexp.swpages - uvmexp.swpginuse),
164 1.1 fvdl PGTOKB(uvmexp.npages),
165 1.1 fvdl PGTOKB(uvmexp.free),
166 1.1 fvdl 0L,
167 1.4 chs PGTOKB(uvmexp.filepages),
168 1.4 chs PGTOKB(uvmexp.anonpages + uvmexp.filepages + uvmexp.execpages),
169 1.1 fvdl PGTOKB(uvmexp.swpages),
170 1.1 fvdl PGTOKB(uvmexp.swpages - uvmexp.swpginuse));
171 1.1 fvdl
172 1.1 fvdl if (len == 0)
173 1.29 christos goto out;
174 1.1 fvdl
175 1.29 christos error = uiomove_frombuf(bf, len, uio);
176 1.29 christos out:
177 1.29 christos free(bf, M_TEMP);
178 1.29 christos return error;
179 1.1 fvdl }
180 1.1 fvdl
181 1.7 christos /*
182 1.26 manu * Linux compatible /proc/devices. Only active when the -o linux
183 1.26 manu * mountflag is used.
184 1.26 manu */
185 1.26 manu int
186 1.30 christos procfs_dodevices(struct lwp *curl, struct proc *p,
187 1.30 christos struct pfsnode *pfs, struct uio *uio)
188 1.26 manu {
189 1.29 christos char *bf;
190 1.26 manu int offset = 0;
191 1.29 christos int i, error = ENAMETOOLONG;
192 1.29 christos
193 1.31 elad /* XXX elad - may need filtering. */
194 1.31 elad
195 1.29 christos bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
196 1.26 manu
197 1.29 christos offset += snprintf(&bf[offset], LBFSZ - offset, "Character devices:\n");
198 1.29 christos if (offset >= LBFSZ)
199 1.29 christos goto out;
200 1.26 manu
201 1.54 ad mutex_enter(&specfs_lock);
202 1.26 manu for (i = 0; i < max_devsw_convs; i++) {
203 1.26 manu if ((devsw_conv[i].d_name == NULL) ||
204 1.26 manu (devsw_conv[i].d_cmajor == -1))
205 1.26 manu continue;
206 1.26 manu
207 1.29 christos offset += snprintf(&bf[offset], LBFSZ - offset,
208 1.26 manu "%3d %s\n", devsw_conv[i].d_cmajor, devsw_conv[i].d_name);
209 1.43 ad if (offset >= LBFSZ) {
210 1.54 ad mutex_exit(&specfs_lock);
211 1.29 christos goto out;
212 1.43 ad }
213 1.26 manu }
214 1.26 manu
215 1.29 christos offset += snprintf(&bf[offset], LBFSZ - offset, "\nBlock devices:\n");
216 1.43 ad if (offset >= LBFSZ) {
217 1.54 ad mutex_exit(&specfs_lock);
218 1.29 christos goto out;
219 1.43 ad }
220 1.26 manu
221 1.26 manu for (i = 0; i < max_devsw_convs; i++) {
222 1.26 manu if ((devsw_conv[i].d_name == NULL) ||
223 1.26 manu (devsw_conv[i].d_bmajor == -1))
224 1.26 manu continue;
225 1.26 manu
226 1.29 christos offset += snprintf(&bf[offset], LBFSZ - offset,
227 1.26 manu "%3d %s\n", devsw_conv[i].d_bmajor, devsw_conv[i].d_name);
228 1.43 ad if (offset >= LBFSZ) {
229 1.54 ad mutex_exit(&specfs_lock);
230 1.29 christos goto out;
231 1.43 ad }
232 1.26 manu }
233 1.54 ad mutex_exit(&specfs_lock);
234 1.26 manu
235 1.29 christos error = uiomove_frombuf(bf, offset, uio);
236 1.29 christos out:
237 1.29 christos free(bf, M_TEMP);
238 1.29 christos return error;
239 1.26 manu }
240 1.26 manu
241 1.26 manu /*
242 1.35 agc * Linux compatible /proc/stat. Only active when the -o linux
243 1.35 agc * mountflag is used.
244 1.35 agc */
245 1.35 agc int
246 1.35 agc procfs_docpustat(struct lwp *curl, struct proc *p,
247 1.35 agc struct pfsnode *pfs, struct uio *uio)
248 1.35 agc {
249 1.35 agc char *bf;
250 1.35 agc int error;
251 1.35 agc int len;
252 1.37 agc #if defined(MULTIPROCESSOR)
253 1.37 agc struct cpu_info *ci;
254 1.37 agc CPU_INFO_ITERATOR cii;
255 1.38 agc #endif
256 1.35 agc int i;
257 1.35 agc
258 1.35 agc error = ENAMETOOLONG;
259 1.35 agc bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
260 1.35 agc
261 1.35 agc len = snprintf(bf, LBFSZ,
262 1.36 dogcow "cpu %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
263 1.35 agc curcpu()->ci_schedstate.spc_cp_time[CP_USER],
264 1.35 agc curcpu()->ci_schedstate.spc_cp_time[CP_NICE],
265 1.35 agc curcpu()->ci_schedstate.spc_cp_time[CP_SYS] /*+ [CP_INTR]*/,
266 1.35 agc curcpu()->ci_schedstate.spc_cp_time[CP_IDLE]);
267 1.35 agc if (len == 0)
268 1.35 agc goto out;
269 1.35 agc
270 1.37 agc #if defined(MULTIPROCESSOR)
271 1.38 agc #define ALLCPUS CPU_INFO_FOREACH(cii, ci)
272 1.38 agc #define CPUNAME ci
273 1.38 agc #else
274 1.38 agc #define ALLCPUS ; i < 1 ;
275 1.38 agc #define CPUNAME curcpu()
276 1.38 agc #endif
277 1.38 agc
278 1.35 agc i = 0;
279 1.38 agc for (ALLCPUS) {
280 1.35 agc len += snprintf(&bf[len], LBFSZ - len,
281 1.36 dogcow "cpu%d %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64
282 1.36 dogcow "\n", i,
283 1.38 agc CPUNAME->ci_schedstate.spc_cp_time[CP_USER],
284 1.38 agc CPUNAME->ci_schedstate.spc_cp_time[CP_NICE],
285 1.38 agc CPUNAME->ci_schedstate.spc_cp_time[CP_SYS],
286 1.38 agc CPUNAME->ci_schedstate.spc_cp_time[CP_IDLE]);
287 1.35 agc if (len >= LBFSZ)
288 1.35 agc goto out;
289 1.35 agc i += 1;
290 1.35 agc }
291 1.35 agc
292 1.35 agc len += snprintf(&bf[len], LBFSZ - len,
293 1.35 agc "disk 0 0 0 0\n"
294 1.35 agc "page %u %u\n"
295 1.35 agc "swap %u %u\n"
296 1.35 agc "intr %u\n"
297 1.35 agc "ctxt %u\n"
298 1.35 agc "btime %lld\n",
299 1.35 agc uvmexp.pageins, uvmexp.pdpageouts,
300 1.35 agc uvmexp.pgswapin, uvmexp.pgswapout,
301 1.35 agc uvmexp.intrs,
302 1.35 agc uvmexp.swtch,
303 1.35 agc (long long)boottime.tv_sec);
304 1.35 agc if (len >= LBFSZ)
305 1.35 agc goto out;
306 1.35 agc
307 1.35 agc error = uiomove_frombuf(bf, len, uio);
308 1.35 agc out:
309 1.35 agc free(bf, M_TEMP);
310 1.35 agc return error;
311 1.35 agc }
312 1.35 agc
313 1.35 agc /*
314 1.35 agc * Linux compatible /proc/loadavg. Only active when the -o linux
315 1.35 agc * mountflag is used.
316 1.35 agc */
317 1.35 agc int
318 1.35 agc procfs_doloadavg(struct lwp *curl, struct proc *p,
319 1.35 agc struct pfsnode *pfs, struct uio *uio)
320 1.35 agc {
321 1.35 agc char *bf;
322 1.35 agc int error;
323 1.35 agc int len;
324 1.35 agc
325 1.35 agc error = ENAMETOOLONG;
326 1.35 agc bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
327 1.35 agc
328 1.35 agc averunnable.fscale = FSCALE;
329 1.35 agc len = snprintf(bf, LBFSZ,
330 1.35 agc "%d.%02d %d.%02d %d.%02d %d/%d %d\n",
331 1.35 agc (int)(averunnable.ldavg[0] / averunnable.fscale),
332 1.35 agc (int)(averunnable.ldavg[0] * 100 / averunnable.fscale % 100),
333 1.35 agc (int)(averunnable.ldavg[1] / averunnable.fscale),
334 1.35 agc (int)(averunnable.ldavg[1] * 100 / averunnable.fscale % 100),
335 1.35 agc (int)(averunnable.ldavg[2] / averunnable.fscale),
336 1.35 agc (int)(averunnable.ldavg[2] * 100 / averunnable.fscale % 100),
337 1.35 agc 1, /* number of ONPROC processes */
338 1.35 agc nprocs,
339 1.35 agc 30000); /* last pid */
340 1.35 agc if (len == 0)
341 1.35 agc goto out;
342 1.35 agc
343 1.35 agc error = uiomove_frombuf(bf, len, uio);
344 1.35 agc out:
345 1.35 agc free(bf, M_TEMP);
346 1.35 agc return error;
347 1.35 agc }
348 1.35 agc
349 1.35 agc /*
350 1.35 agc * Linux compatible /proc/<pid>/statm. Only active when the -o linux
351 1.35 agc * mountflag is used.
352 1.35 agc */
353 1.35 agc int
354 1.35 agc procfs_do_pid_statm(struct lwp *curl, struct lwp *l,
355 1.35 agc struct pfsnode *pfs, struct uio *uio)
356 1.35 agc {
357 1.37 agc struct vmspace *vm;
358 1.35 agc struct proc *p = l->l_proc;
359 1.35 agc struct rusage *ru = &p->p_stats->p_ru;
360 1.35 agc char *bf;
361 1.35 agc int error;
362 1.35 agc int len;
363 1.35 agc
364 1.35 agc error = ENAMETOOLONG;
365 1.35 agc bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
366 1.35 agc
367 1.37 agc /* XXX - we use values from vmspace, since dsl says that ru figures
368 1.37 agc are always 0 except for zombies. See kvm_proc.c::kvm_getproc2() */
369 1.37 agc if ((error = proc_vmspace_getref(p, &vm)) != 0) {
370 1.39 agc goto out;
371 1.37 agc }
372 1.35 agc
373 1.35 agc len = snprintf(bf, LBFSZ,
374 1.35 agc "%lu %lu %lu %lu %lu %lu %lu\n",
375 1.37 agc (unsigned long)(vm->vm_tsize + vm->vm_dsize + vm->vm_ssize), /* size */
376 1.37 agc (unsigned long)(vm->vm_rssize), /* resident */
377 1.37 agc (unsigned long)(ru->ru_ixrss), /* shared */
378 1.37 agc (unsigned long)(vm->vm_tsize), /* text size in pages */
379 1.37 agc (unsigned long)(vm->vm_dsize), /* data size in pages */
380 1.37 agc (unsigned long)(vm->vm_ssize), /* stack size in pages */
381 1.35 agc (unsigned long) 0);
382 1.37 agc
383 1.54.8.1 bouyer uvmspace_free(vm);
384 1.54.8.1 bouyer
385 1.35 agc if (len == 0)
386 1.35 agc goto out;
387 1.35 agc
388 1.35 agc error = uiomove_frombuf(bf, len, uio);
389 1.35 agc out:
390 1.35 agc free(bf, M_TEMP);
391 1.35 agc return error;
392 1.35 agc }
393 1.35 agc
394 1.37 agc #define USEC_2_TICKS(x) ((x) / 10000)
395 1.37 agc
396 1.35 agc /*
397 1.7 christos * Linux compatible /proc/<pid>/stat. Only active when the -o linux
398 1.7 christos * mountflag is used.
399 1.7 christos */
400 1.7 christos int
401 1.30 christos procfs_do_pid_stat(struct lwp *curl, struct lwp *l,
402 1.30 christos struct pfsnode *pfs, struct uio *uio)
403 1.7 christos {
404 1.29 christos char *bf;
405 1.25 christos struct proc *p = l->l_proc;
406 1.16 itojun int len;
407 1.7 christos struct tty *tty = p->p_session->s_ttyp;
408 1.7 christos struct rusage *ru = &p->p_stats->p_ru;
409 1.7 christos struct rusage *cru = &p->p_stats->p_cru;
410 1.7 christos unsigned long stext = 0, etext = 0, sstack = 0;
411 1.32 ad struct timeval rt;
412 1.39 agc struct vmspace *vm;
413 1.29 christos int error = 0;
414 1.29 christos
415 1.29 christos bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
416 1.7 christos
417 1.39 agc if ((error = proc_vmspace_getref(p, &vm)) != 0) {
418 1.39 agc goto out;
419 1.39 agc }
420 1.39 agc
421 1.35 agc get_proc_size_info(l, &stext, &etext, &sstack);
422 1.32 ad
423 1.49 ad mutex_enter(proc_lock);
424 1.50 ad mutex_enter(p->p_lock);
425 1.32 ad
426 1.32 ad calcru(p, NULL, NULL, NULL, &rt);
427 1.7 christos
428 1.29 christos len = snprintf(bf, LBFSZ,
429 1.7 christos "%d (%s) %c %d %d %d %d %d "
430 1.7 christos "%u "
431 1.7 christos "%lu %lu %lu %lu %lu %lu %lu %lu "
432 1.7 christos "%d %d %d "
433 1.8 hannken "%lu %lu %lu %lu %" PRIu64 " "
434 1.7 christos "%lu %lu %lu "
435 1.7 christos "%u %u "
436 1.7 christos "%u %u %u %u "
437 1.7 christos "%lu %lu %lu %d %d\n",
438 1.7 christos
439 1.7 christos p->p_pid,
440 1.7 christos p->p_comm,
441 1.7 christos "0IR3SZD"[(p->p_stat > 6) ? 0 : (int)p->p_stat],
442 1.28 elad (p->p_pptr != NULL) ? p->p_pptr->p_pid : 0,
443 1.7 christos
444 1.7 christos p->p_pgid,
445 1.7 christos p->p_session->s_sid,
446 1.7 christos tty ? tty->t_dev : 0,
447 1.15 christos (tty && tty->t_pgrp) ? tty->t_pgrp->pg_id : 0,
448 1.7 christos
449 1.7 christos p->p_flag,
450 1.7 christos
451 1.7 christos ru->ru_minflt,
452 1.7 christos cru->ru_minflt,
453 1.7 christos ru->ru_majflt,
454 1.7 christos cru->ru_majflt,
455 1.37 agc USEC_2_TICKS(ru->ru_utime.tv_usec),
456 1.37 agc USEC_2_TICKS(ru->ru_stime.tv_usec),
457 1.37 agc USEC_2_TICKS(cru->ru_utime.tv_usec),
458 1.37 agc USEC_2_TICKS(cru->ru_stime.tv_usec),
459 1.7 christos
460 1.38 agc l->l_priority, /* XXX: priority */
461 1.39 agc p->p_nice - 20,
462 1.7 christos 0,
463 1.7 christos
464 1.32 ad rt.tv_sec,
465 1.7 christos p->p_stats->p_start.tv_sec,
466 1.39 agc (unsigned long)(vm->vm_tsize + vm->vm_dsize + vm->vm_ssize), /* size */
467 1.39 agc (unsigned long)(vm->vm_rssize), /* resident */
468 1.7 christos p->p_rlimit[RLIMIT_RSS].rlim_cur,
469 1.7 christos
470 1.7 christos stext, /* start code */
471 1.7 christos etext, /* end code */
472 1.7 christos sstack, /* mm start stack */
473 1.7 christos 0, /* XXX: pc */
474 1.7 christos 0, /* XXX: sp */
475 1.32 ad p->p_sigpend.sp_set.__bits[0], /* XXX: pending */
476 1.32 ad 0, /* XXX: held */
477 1.7 christos p->p_sigctx.ps_sigignore.__bits[0], /* ignored */
478 1.7 christos p->p_sigctx.ps_sigcatch.__bits[0], /* caught */
479 1.7 christos
480 1.7 christos (unsigned long)(intptr_t)l->l_wchan,
481 1.7 christos ru->ru_nvcsw,
482 1.7 christos ru->ru_nivcsw,
483 1.7 christos p->p_exitsig,
484 1.7 christos 0); /* XXX: processor */
485 1.7 christos
486 1.50 ad mutex_exit(p->p_lock);
487 1.49 ad mutex_exit(proc_lock);
488 1.32 ad
489 1.54.8.1 bouyer uvmspace_free(vm);
490 1.54.8.1 bouyer
491 1.7 christos if (len == 0)
492 1.29 christos goto out;
493 1.7 christos
494 1.29 christos error = uiomove_frombuf(bf, len, uio);
495 1.29 christos out:
496 1.29 christos free(bf, M_TEMP);
497 1.29 christos return error;
498 1.7 christos }
499 1.7 christos
500 1.1 fvdl int
501 1.30 christos procfs_docpuinfo(struct lwp *curl, struct proc *p,
502 1.30 christos struct pfsnode *pfs, struct uio *uio)
503 1.1 fvdl {
504 1.29 christos int len = LBFSZ;
505 1.23 christos char *bf = malloc(len, M_TEMP, M_WAITOK);
506 1.21 christos int error;
507 1.1 fvdl
508 1.23 christos if (procfs_getcpuinfstr(bf, &len) < 0) {
509 1.21 christos error = ENOSPC;
510 1.21 christos goto done;
511 1.21 christos }
512 1.5 jrf
513 1.21 christos if (len == 0) {
514 1.21 christos error = 0;
515 1.21 christos goto done;
516 1.21 christos }
517 1.5 jrf
518 1.23 christos error = uiomove_frombuf(bf, len, uio);
519 1.21 christos done:
520 1.23 christos free(bf, M_TEMP);
521 1.21 christos return error;
522 1.5 jrf }
523 1.5 jrf
524 1.5 jrf int
525 1.30 christos procfs_douptime(struct lwp *curl, struct proc *p,
526 1.30 christos struct pfsnode *pfs, struct uio *uio)
527 1.5 jrf {
528 1.29 christos char *bf;
529 1.16 itojun int len;
530 1.5 jrf struct timeval runtime;
531 1.5 jrf u_int64_t idle;
532 1.29 christos int error = 0;
533 1.29 christos
534 1.29 christos bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
535 1.5 jrf
536 1.47 yamt microuptime(&runtime);
537 1.5 jrf idle = curcpu()->ci_schedstate.spc_cp_time[CP_IDLE];
538 1.29 christos len = snprintf(bf, LBFSZ,
539 1.16 itojun "%lu.%02lu %" PRIu64 ".%02" PRIu64 "\n",
540 1.16 itojun runtime.tv_sec, runtime.tv_usec / 10000,
541 1.16 itojun idle / hz, (((idle % hz) * 100) / hz) % 100);
542 1.1 fvdl
543 1.1 fvdl if (len == 0)
544 1.29 christos goto out;
545 1.1 fvdl
546 1.29 christos error = uiomove_frombuf(bf, len, uio);
547 1.29 christos out:
548 1.29 christos free(bf, M_TEMP);
549 1.29 christos return error;
550 1.1 fvdl }
551 1.19 jdolecek
552 1.19 jdolecek int
553 1.30 christos procfs_domounts(struct lwp *curl, struct proc *p,
554 1.30 christos struct pfsnode *pfs, struct uio *uio)
555 1.19 jdolecek {
556 1.29 christos char *bf, *mtab = NULL;
557 1.19 jdolecek const char *fsname;
558 1.19 jdolecek size_t len, mtabsz = 0;
559 1.19 jdolecek struct mount *mp, *nmp;
560 1.19 jdolecek struct statvfs *sfs;
561 1.19 jdolecek int error = 0;
562 1.19 jdolecek
563 1.29 christos bf = malloc(LBFSZ, M_TEMP, M_WAITOK);
564 1.41 ad mutex_enter(&mountlist_lock);
565 1.19 jdolecek for (mp = CIRCLEQ_FIRST(&mountlist); mp != (void *)&mountlist;
566 1.19 jdolecek mp = nmp) {
567 1.53 ad if (vfs_busy(mp, &nmp)) {
568 1.19 jdolecek continue;
569 1.19 jdolecek }
570 1.19 jdolecek
571 1.19 jdolecek sfs = &mp->mnt_stat;
572 1.19 jdolecek
573 1.19 jdolecek /* Linux uses different names for some filesystems */
574 1.19 jdolecek fsname = sfs->f_fstypename;
575 1.19 jdolecek if (strcmp(fsname, "procfs") == 0)
576 1.19 jdolecek fsname = "proc";
577 1.19 jdolecek else if (strcmp(fsname, "ext2fs") == 0)
578 1.19 jdolecek fsname = "ext2";
579 1.20 perry
580 1.29 christos len = snprintf(bf, LBFSZ, "%s %s %s %s%s%s%s%s%s 0 0\n",
581 1.19 jdolecek sfs->f_mntfromname,
582 1.19 jdolecek sfs->f_mntonname,
583 1.19 jdolecek fsname,
584 1.19 jdolecek (mp->mnt_flag & MNT_RDONLY) ? "ro" : "rw",
585 1.19 jdolecek (mp->mnt_flag & MNT_NOSUID) ? ",nosuid" : "",
586 1.19 jdolecek (mp->mnt_flag & MNT_NOEXEC) ? ",noexec" : "",
587 1.19 jdolecek (mp->mnt_flag & MNT_NODEV) ? ",nodev" : "",
588 1.19 jdolecek (mp->mnt_flag & MNT_SYNCHRONOUS) ? ",sync" : "",
589 1.19 jdolecek (mp->mnt_flag & MNT_NOATIME) ? ",noatime" : ""
590 1.19 jdolecek );
591 1.19 jdolecek
592 1.19 jdolecek mtab = realloc(mtab, mtabsz + len, M_TEMP, M_WAITOK);
593 1.23 christos memcpy(mtab + mtabsz, bf, len);
594 1.19 jdolecek mtabsz += len;
595 1.19 jdolecek
596 1.52 ad vfs_unbusy(mp, false, &nmp);
597 1.19 jdolecek }
598 1.41 ad mutex_exit(&mountlist_lock);
599 1.29 christos free(bf, M_TEMP);
600 1.19 jdolecek
601 1.19 jdolecek if (mtabsz > 0) {
602 1.19 jdolecek error = uiomove_frombuf(mtab, mtabsz, uio);
603 1.19 jdolecek free(mtab, M_TEMP);
604 1.19 jdolecek }
605 1.19 jdolecek
606 1.19 jdolecek return error;
607 1.19 jdolecek }
608