]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libkvm/kvm_getprocs.3
unfinished sblive driver, playback/mixer only for now - not enabled in
[FreeBSD/FreeBSD.git] / lib / libkvm / kvm_getprocs.3
1 .\" Copyright (c) 1992, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software developed by the Computer Systems
5 .\" Engineering group at Lawrence Berkeley Laboratory under DARPA contract
6 .\" BG 91-66 and contributed to Berkeley.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. All advertising materials mentioning features or use of this software
17 .\"    must display the following acknowledgement:
18 .\"     This product includes software developed by the University of
19 .\"     California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\"    may be used to endorse or promote products derived from this software
22 .\"    without specific prior written permission.
23 .\"
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" SUCH DAMAGE.
35 .\"
36 .\"     @(#)kvm_getprocs.3      8.1 (Berkeley) 6/4/93
37 .\" $FreeBSD$
38 .\"
39 .Dd June 4, 1993
40 .Dt KVM_GETPROCS 3
41 .Os
42 .Sh NAME
43 .Nm kvm_getprocs ,
44 .Nm kvm_getargv ,
45 .Nm kvm_getenvv 
46 .Nd access user process state
47 .Sh SYNOPSIS
48 .Fd #include <kvm.h>
49 .Fd #include <sys/param.h>
50 .Fd #include <sys/sysctl.h>
51 .\" .Fa kvm_t *kd
52 .br
53 .Ft struct kinfo_proc *
54 .Fn kvm_getprocs "kvm_t *kd" "int op" "int arg" "int *cnt"
55 .Ft char **
56 .Fn kvm_getargv "kvm_t *kd" "const struct kinfo_proc *p" "int nchr"
57 .Ft char **
58 .Fn kvm_getenvv "kvm_t *kd" "const struct kinfo_proc *p" "int nchr"
59 .Sh DESCRIPTION
60 .Fn kvm_getprocs
61 returns a (sub-)set of active processes in the kernel indicated by
62 .Fa kd.
63 The
64 .Fa op
65 and
66 .Fa arg
67 arguments constitute a predicate which limits the set of processes
68 returned.  The value of
69 .Fa op
70 describes the filtering predicate as follows:
71 .Pp
72 .Bl -tag -width 20n -offset indent -compact
73 .It Sy KERN_PROC_ALL
74 all processes
75 .It Sy KERN_PROC_PID
76 processes with process id 
77 .Fa arg
78 .It Sy KERN_PROC_PGRP
79 processes with process group
80 .Fa arg
81 .It Sy KERN_PROC_SESSION
82 processes with session
83 .Fa arg
84 .It Sy KERN_PROC_TTY
85 processes with tty
86 .Fa arg
87 .It Sy KERN_PROC_UID
88 processes with effective user id
89 .Fa arg
90 .It Sy KERN_PROC_RUID
91 processes with real user id
92 .Fa arg
93 .El
94 .Pp
95 The number of processes found is returned in the reference parameter
96 .Fa cnt .
97 The processes are returned as a contiguous array of kinfo_proc structures.
98 This memory is locally allocated, and subsequent calls to
99 .Fn kvm_getprocs 
100 and 
101 .Fn kvm_close
102 will overwrite this storage.
103 .Pp
104 .Fn kvm_getargv
105 returns a null-terminated argument vector that corresponds to the 
106 command line arguments passed to process indicated by
107 .Fa p .
108 Most likely, these arguments correspond to the values passed to
109 .Xr exec 3
110 on process creation.  This information is, however,
111 deliberately under control of the process itself.
112 Note that the original command name can be found, unaltered,
113 in the p_comm field of the process structure returned by
114 .Fn kvm_getprocs .
115 .Pp
116 The 
117 .Fa nchr
118 argument indicates the maximum number of characters, including null bytes,
119 to use in building the strings.  If this amount is exceeded, the string
120 causing the overflow is truncated and the partial result is returned.
121 This is handy for programs like
122 .Xr ps 1
123 and
124 .Xr w 1
125 that print only a one line summary of a command and should not copy
126 out large amounts of text only to ignore it.
127 If
128 .Fa nchr
129 is zero, no limit is imposed and all argument strings are returned in 
130 their entirety.
131 .Pp
132 The memory allocated to the argv pointers and string storage
133 is owned by the kvm library.  Subsequent 
134 .Fn kvm_getprocs 
135 and 
136 .Xr kvm_close 3
137 calls will clobber this storage.
138 .Pp
139 The
140 .Fn kvm_getenvv
141 function is similar to
142 .Fn kvm_getargv
143 but returns the vector of environment strings.  This data is
144 also alterable by the process.
145 .Sh RETURN VALUES
146 .Fn kvm_getprocs ,
147 .Fn kvm_getargv ,
148 and
149 .Fn kvm_getenvv ,
150 all return
151 .Dv NULL
152 on failure.
153 .Pp
154 .Sh BUGS
155 These routines do not belong in the kvm interface.
156 .Sh SEE ALSO
157 .Xr kvm 3 ,
158 .Xr kvm_close 3 ,
159 .Xr kvm_geterr 3 ,
160 .Xr kvm_nlist 3 ,
161 .Xr kvm_open 3 ,
162 .Xr kvm_openfiles 3 ,
163 .Xr kvm_read 3 ,
164 .Xr kvm_write 3