Print this page
12046 Provide /proc/<PID>/fdinfo/
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/man/man4/proc.4.man.txt
+++ new/usr/src/man/man4/proc.4.man.txt
1 1 PROC(4) File Formats and Configurations PROC(4)
2 2
3 3 NAME
4 4 proc - /proc, the process file system
5 5
6 6 DESCRIPTION
7 7 /proc is a file system that provides access to the state of each process
8 8 and light-weight process (lwp) in the system. The name of each entry in
9 9 the /proc directory is a decimal number corresponding to a process-ID.
10 10 These entries are themselves subdirectories. Access to process state is
11 11 provided by additional files contained within each subdirectory; the
12 12 hierarchy is described more completely below. In this document, "/proc
13 13 file" refers to a non-directory file within the hierarchy rooted at
14 14 /proc. The owner of each /proc file and subdirectory is determined by
15 15 the user-ID of the process.
16 16
17 17 /proc can be mounted on any mount point, in addition to the standard
18 18 /proc mount point, and can be mounted several places at once. Such
19 19 additional mounts are allowed in order to facilitate the confinement of
20 20 processes to subtrees of the file system via chroot(2) and yet allow such
21 21 processes access to commands like ps(1).
22 22
23 23 Standard system calls are used to access /proc files: open(2), close(2),
24 24 read(2), and write(2) (including readv(2), writev(2), pread(2), and
25 25 pwrite(2)). Most files describe process state and can only be opened for
26 26 reading. ctl and lwpctl (control) files permit manipulation of process
27 27 state and can only be opened for writing. as (address space) files
28 28 contain the image of the running process and can be opened for both
29 29 reading and writing. An open for writing allows process control; a read-
30 30 only open allows inspection but not control. In this document, we refer
31 31 to the process as open for reading or writing if any of its associated
32 32 /proc files is open for reading or writing.
33 33
34 34 In general, more than one process can open the same /proc file at the
35 35 same time. Exclusive open is an advisory mechanism provided to allow
36 36 controlling processes to avoid collisions with each other. A process can
37 37 obtain exclusive control of a target process, with respect to other
38 38 cooperating processes, if it successfully opens any /proc file in the
39 39 target process for writing (the as or ctl files, or the lwpctl file of
40 40 any lwp) while specifying O_EXCL in the open(2). Such an open will fail
41 41 if the target process is already open for writing (that is, if an as,
42 42 ctl, or lwpctl file is already open for writing). There can be any
43 43 number of concurrent read-only opens; O_EXCL is ignored on opens for
44 44 reading. It is recommended that the first open for writing by a
45 45 controlling process use the O_EXCL flag; multiple controlling processes
46 46 usually result in chaos.
47 47
48 48 If a process opens one of its own /proc files for writing, the open
49 49 succeeds regardless of O_EXCL and regardless of whether some other
50 50 process has the process open for writing. Self-opens do not count when
51 51 another process attempts an exclusive open. (A process cannot exclude a
52 52 debugger by opening itself for writing and the application of a debugger
53 53 cannot prevent a process from opening itself.) All self-opens for
54 54 writing are forced to be close-on-exec (see the F_SETFD operation of
55 55 fcntl(2)).
56 56
57 57 Data may be transferred from or to any locations in the address space of
58 58 the traced process by applying lseek(2) to position the as file at the
59 59 virtual address of interest followed by read(2) or write(2) (or by using
60 60 pread(2) or pwrite(2) for the combined operation). The address-map files
61 61 /proc/pid/map and /proc/pid/xmap can be read to determine the accessible
62 62 areas (mappings) of the address space. I/O transfers may span contiguous
63 63 mappings. An I/O request extending into an unmapped area is truncated at
64 64 the boundary. A write request beginning at an unmapped virtual address
65 65 fails with EIO; a read request beginning at an unmapped virtual address
66 66 returns zero (an end-of-file indication).
67 67
68 68 Information and control operations are provided through additional files.
69 69 <procfs.h> contains definitions of data structures and message formats
70 70 used with these files. Some of these definitions involve the use of sets
71 71 of flags. The set types sigset_t, fltset_t, and sysset_t correspond,
72 72 respectively, to signal, fault, and system call enumerations defined in
73 73 <sys/signal.h>, <sys/fault.h>, and <sys/syscall.h>. Each set type is
74 74 large enough to hold flags for its own enumeration. Although they are of
75 75 different sizes, they have a common structure and can be manipulated by
76 76 these macros:
77 77
78 78 prfillset(&set); /* turn on all flags in set */
79 79 premptyset(&set); /* turn off all flags in set */
80 80 praddset(&set, flag); /* turn on the specified flag */
81 81 prdelset(&set, flag); /* turn off the specified flag */
82 82 r = prismember(&set, flag); /* != 0 iff flag is turned on */
83 83
84 84 One of prfillset() or premptyset() must be used to initialize set before
85 85 it is used in any other operation. flag must be a member of the
86 86 enumeration corresponding to set.
87 87
88 88 Every process contains at least one light-weight process, or lwp. Each
89 89 lwp represents a flow of execution that is independently scheduled by the
90 90 operating system. All lwps in a process share its address space as well
91 91 as many other attributes. Through the use of lwpctl and ctl files as
92 92 described below, it is possible to affect individual lwps in a process or
93 93 to affect all of them at once, depending on the operation.
94 94
95 95 When the process has more than one lwp, a representative lwp is chosen by
96 96 the system for certain process status files and control operations. The
97 97 representative lwp is a stopped lwp only if all of the process's lwps are
98 98 stopped; is stopped on an event of interest only if all of the lwps are
99 99 so stopped (excluding PR_SUSPENDED lwps); is in a PR_REQUESTED stop only
100 100 if there are no other events of interest to be found; or, failing
101 101 everything else, is in a PR_SUSPENDED stop (implying that the process is
102 102 deadlocked). See the description of the status file for definitions of
103 103 stopped states. See the PCSTOP control operation for the definition of
104 104 "event of interest".
105 105
106 106 The representative lwp remains fixed (it will be chosen again on the next
107 107 operation) as long as all of the lwps are stopped on events of interest
108 108 or are in a PR_SUSPENDED stop and the PCRUN control operation is not
109 109 applied to any of them.
110 110
111 111 When applied to the process control file, every /proc control operation
112 112 that must act on an lwp uses the same algorithm to choose which lwp to
113 113 act upon. Together with synchronous stopping (see PCSET), this enables a
114 114 debugger to control a multiple-lwp process using only the process-level
115 115 status and control files if it so chooses. More fine-grained control can
116 116 be achieved using the lwp-specific files.
117 117
118 118 The system supports two process data models, the traditional 32-bit data
119 119 model in which ints, longs and pointers are all 32 bits wide (the ILP32
120 120 data model), and on some platforms the 64-bit data model in which longs
121 121 and pointers, but not ints, are 64 bits in width (the LP64 data model).
122 122 In the LP64 data model some system data types, notably size_t, off_t,
123 123 time_t and dev_t, grow from 32 bits to 64 bits as well.
124 124
125 125 The /proc interfaces described here are available to both 32-bit and
126 126 64-bit controlling processes. However, many operations attempted by a
127 127 32-bit controlling process on a 64-bit target process will fail with
128 128 EOVERFLOW because the address space range of a 32-bit process cannot
129 129 encompass a 64-bit process or because the data in some 64-bit system data
130 130 type cannot be compressed to fit into the corresponding 32-bit type
131 131 without loss of information. Operations that fail in this circumstance
132 132 include reading and writing the address space, reading the address-map
133 133 files, and setting the target process's registers. There is no
134 134 restriction on operations applied by a 64-bit process to either a 32-bit
135 135 or a 64-bit target processes.
136 136
137 137 The format of the contents of any /proc file depends on the data model of
138 138 the observer (the controlling process), not on the data model of the
139 139 target process. A 64-bit debugger does not have to translate the
140 140 information it reads from a /proc file for a 32-bit process from 32-bit
141 141 format to 64-bit format. However, it usually has to be aware of the data
142 142 model of the target process. The pr_dmodel field of the status files
143 143 indicates the target process's data model.
144 144
145 145 To help deal with system data structures that are read from 32-bit
146 146 processes, a 64-bit controlling program can be compiled with the C
147 147 preprocessor symbol _SYSCALL32 defined before system header files are
148 148 included. This makes explicit 32-bit fixed-width data structures (like
149 149 struct stat32) visible to the 64-bit program. See types32.h(3HEAD).
150 150
151 151 DIRECTORY STRUCTURE
152 152 At the top level, the directory /proc contains entries each of which
153 153 names an existing process in the system. These entries are themselves
154 154 directories. Except where otherwise noted, the files described below can
155 155 be opened for reading only. In addition, if a process becomes a zombie
156 156 (one that has exited but whose parent has not yet performed a wait(3C)
157 157 upon it), most of its associated /proc files disappear from the
158 158 hierarchy; subsequent attempts to open them, or to read or write files
159 159 opened before the process exited, will elicit the error ENOENT.
160 160
161 161 Although process state and consequently the contents of /proc files can
162 162 change from instant to instant, a single read(2) of a /proc file is
163 163 guaranteed to return a sane representation of state; that is, the read
164 164 will be atomic with respect to the state of the process. No such
165 165 guarantee applies to successive reads applied to a /proc file for a
166 166 running process. In addition, atomicity is not guaranteed for I/O
167 167 applied to the as (address-space) file for a running process or for a
168 168 process whose address space contains memory shared by another running
169 169 process.
170 170
171 171 A number of structure definitions are used to describe the files. These
172 172 structures may grow by the addition of elements at the end in future
173 173 releases of the system and it is not legitimate for a program to assume
174 174 that they will not.
175 175
176 176 STRUCTURE OF /proc/pid
177 177 A given directory /proc/pid contains the following entries. A process
178 178 can use the invisible alias /proc/self if it wishes to open one of its
179 179 own /proc files (invisible in the sense that the name "self" does not
180 180 appear in a directory listing of /proc obtained from ls(1), getdents(2),
181 181 or readdir(3C)).
182 182
183 183 contracts
184 184 A directory containing references to the contracts held by the process.
185 185 Each entry is a symlink to the contract's directory under
186 186 /system/contract. See contract(4).
187 187
188 188 as
189 189 Contains the address-space image of the process; it can be opened for
190 190 both reading and writing. lseek(2) is used to position the file at the
191 191 virtual address of interest and then the address space can be examined or
192 192 changed through read(2) or write(2) (or by using pread(2) or pwrite(2)
193 193 for the combined operation).
194 194
195 195 ctl
196 196 A write-only file to which structured messages are written directing the
197 197 system to change some aspect of the process's state or control its
198 198 behavior in some way. The seek offset is not relevant when writing to
199 199 this file. Individual lwps also have associated lwpctl files in the lwp
200 200 subdirectories. A control message may be written either to the process's
201 201 ctl file or to a specific lwpctl file with operation-specific effects.
202 202 The effect of a control message is immediately reflected in the state of
203 203 the process visible through appropriate status and information files.
204 204 The types of control messages are described in detail later. See CONTROL
205 205 MESSAGES.
206 206
207 207 status
208 208 Contains state information about the process and the representative lwp.
209 209 The file contains a pstatus structure which contains an embedded
210 210 lwpstatus structure for the representative lwp, as follows:
211 211
212 212 typedef struct pstatus {
213 213 int pr_flags; /* flags (see below) */
214 214 int pr_nlwp; /* number of active lwps in the process */
215 215 int pr_nzomb; /* number of zombie lwps in the process */
216 216 pid_tpr_pid; /* process id */
217 217 pid_tpr_ppid; /* parent process id */
218 218 pid_tpr_pgid; /* process group id */
219 219 pid_tpr_sid; /* session id */
220 220 id_t pr_aslwpid; /* obsolete */
221 221 id_t pr_agentid; /* lwp-id of the agent lwp, if any */
222 222 sigset_t pr_sigpend; /* set of process pending signals */
223 223 uintptr_t pr_brkbase; /* virtual address of the process heap */
224 224 size_t pr_brksize; /* size of the process heap, in bytes */
225 225 uintptr_t pr_stkbase; /* virtual address of the process stack */
226 226 size_tpr_stksize; /* size of the process stack, in bytes */
227 227 timestruc_t pr_utime; /* process user cpu time */
228 228 timestruc_t pr_stime; /* process system cpu time */
229 229 timestruc_t pr_cutime; /* sum of children's user times */
230 230 timestruc_t pr_cstime; /* sum of children's system times */
231 231 sigset_t pr_sigtrace; /* set of traced signals */
232 232 fltset_t pr_flttrace; /* set of traced faults */
233 233 sysset_t pr_sysentry; /* set of system calls traced on entry */
234 234 sysset_t pr_sysexit; /* set of system calls traced on exit */
235 235 char pr_dmodel; /* data model of the process */
236 236 taskid_t pr_taskid; /* task id */
237 237 projid_t pr_projid; /* project id */
238 238 zoneid_t pr_zoneid; /* zone id */
239 239 lwpstatus_t pr_lwp; /* status of the representative lwp */
240 240 } pstatus_t;
241 241
242 242 pr_flags is a bit-mask holding the following process flags. For
243 243 convenience, it also contains the lwp flags for the representative lwp,
244 244 described later.
245 245
246 246 PR_ISSYS process is a system process (see PCSTOP).
247 247
248 248 PR_VFORKP process is the parent of a vforked child (see PCWATCH).
249 249
250 250 PR_FORK process has its inherit-on-fork mode set (see PCSET).
251 251
252 252 PR_RLC process has its run-on-last-close mode set (see PCSET).
253 253
254 254 PR_KLC process has its kill-on-last-close mode set (see PCSET).
255 255
256 256 PR_ASYNC process has its asynchronous-stop mode set (see PCSET).
257 257
258 258 PR_MSACCT Set by default in all processes to indicate that
259 259 microstate accounting is enabled. However, this flag
260 260 has been deprecated and no longer has any effect.
261 261 Microstate accounting may not be disabled; however, it
262 262 is still possible to toggle the flag.
263 263
264 264 PR_MSFORK Set by default in all processes to indicate that
265 265 microstate accounting will be enabled for processes that
266 266 this parent fork(2)s. However, this flag has been
267 267 deprecated and no longer has any effect. It is possible
268 268 to toggle this flag; however, it is not possible to
269 269 disable microstate accounting.
270 270
271 271 PR_BPTADJ process has its breakpoint adjustment mode set (see
272 272 PCSET).
273 273
274 274 PR_PTRACE process has its ptrace-compatibility mode set (see
275 275 PCSET).
276 276
277 277 pr_nlwp is the total number of active lwps in the process. pr_nzomb is
278 278 the total number of zombie lwps in the process. A zombie lwp is a non-
279 279 detached lwp that has terminated but has not been reaped with thr_join(3)
280 280 or pthread_join(3C).
281 281
282 282 pr_pid, pr_ppi, pr_pgid, and pr_sid are, respectively, the process ID,
283 283 the ID of the process's parent, the process's process group ID, and the
284 284 process's session ID.
285 285
286 286 pr_aslwpid is obsolete and is always zero.
287 287
288 288 pr_agentid is the lwp-ID for the /proc agent lwp (see the PCAGENT control
289 289 operation). It is zero if there is no agent lwp in the process.
290 290
291 291 pr_sigpend identifies asynchronous signals pending for the process.
292 292
293 293 pr_brkbase is the virtual address of the process heap and pr_brksize is
294 294 its size in bytes. The address formed by the sum of these values is the
295 295 process break (see brk(2)). pr_stkbase and pr_stksize are, respectively,
296 296 the virtual address of the process stack and its size in bytes. (Each
297 297 lwp runs on a separate stack; the distinguishing characteristic of the
298 298 process stack is that the operating system will grow it when necessary.)
299 299
300 300 pr_utime, pr_stime, pr_cutime, and pr_cstime are, respectively, the user
301 301 CPU and system CPU time consumed by the process, and the cumulative user
302 302 CPU and system CPU time consumed by the process's children, in seconds
303 303 and nanoseconds.
304 304
305 305 pr_sigtrace and pr_flttrace contain, respectively, the set of signals and
306 306 the set of hardware faults that are being traced (see PCSTRACE and
307 307 PCSFAULT).
308 308
309 309 pr_sysentry and pr_sysexit contain, respectively, the sets of system
310 310 calls being traced on entry and exit (see PCSENTRY and PCSEXIT).
311 311
312 312 pr_dmodel indicates the data model of the process. Possible values are:
313 313
314 314 PR_MODEL_ILP32 process data model is ILP32.
315 315
316 316 PR_MODEL_LP64 process data model is LP64.
317 317
318 318 PR_MODEL_NATIVE process data model is native.
319 319
320 320 The pr_taskid, pr_projid, and pr_zoneid fields contain respectively, the
321 321 numeric IDs of the task, project, and zone in which the process was
322 322 running.
323 323
324 324 The constant PR_MODEL_NATIVE reflects the data model of the controlling
325 325 process, that is, its value is PR_MODEL_ILP32 or PR_MODEL_LP64 according
326 326 to whether the controlling process has been compiled as a 32-bit program
327 327 or a 64-bit program, respectively.
328 328
329 329 pr_lwp contains the status information for the representative lwp:
330 330
331 331 typedef struct lwpstatus {
332 332 int pr_flags; /* flags (see below) */
333 333 id_t pr_lwpid; /* specific lwp identifier */
334 334 short pr_why; /* reason for lwp stop, if stopped */
335 335 short pr_what; /* more detailed reason */
336 336 short pr_cursig; /* current signal, if any */
337 337 siginfo_t pr_info; /* info associated with signal or fault */
338 338 sigset_t pr_lwppend; /* set of signals pending to the lwp */
339 339 sigset_t pr_lwphold; /* set of signals blocked by the lwp */
340 340 struct sigaction pr_action;/* signal action for current signal */
341 341 stack_t pr_altstack; /* alternate signal stack info */
342 342 uintptr_t pr_oldcontext; /* address of previous ucontext */
343 343 short pr_syscall; /* system call number (if in syscall) */
344 344 short pr_nsysarg; /* number of arguments to this syscall */
345 345 int pr_errno; /* errno for failed syscall */
346 346 long pr_sysarg[PRSYSARGS]; /* arguments to this syscall */
347 347 long pr_rval1; /* primary syscall return value */
348 348 long pr_rval2; /* second syscall return value, if any */
349 349 char pr_clname[PRCLSZ]; /* scheduling class name */
350 350 timestruc_t pr_tstamp; /* real-time time stamp of stop */
351 351 timestruc_t pr_utime; /* lwp user cpu time */
352 352 timestruc_t pr_stime; /* lwp system cpu time */
353 353 uintptr_t pr_ustack; /* stack boundary data (stack_t) address */
354 354 ulong_t pr_instr; /* current instruction */
355 355 prgregset_t pr_reg; /* general registers */
356 356 prfpregset_t pr_fpreg; /* floating-point registers */
357 357 } lwpstatus_t;
358 358
359 359 pr_flags is a bit-mask holding the following lwp flags. For convenience,
360 360 it also contains the process flags, described previously.
361 361
362 362 PR_STOPPED The lwp is stopped.
363 363
364 364 PR_ISTOP The lwp is stopped on an event of interest (see
365 365 PCSTOP).
366 366
367 367 PR_DSTOP The lwp has a stop directive in effect (see PCSTOP).
368 368
369 369 PR_STEP The lwp has a single-step directive in effect (see
370 370 PCRUN).
371 371
372 372 PR_ASLEEP The lwp is in an interruptible sleep within a system
373 373 call.
374 374
375 375 PR_PCINVAL The lwp's current instruction (pr_instr) is undefined.
376 376
377 377 PR_DETACH This is a detached lwp (see pthread_create(3C) and
378 378 pthread_join(3C)).
379 379
380 380 PR_DAEMON This is a daemon lwp (see pthread_create(3C)).
381 381
382 382 PR_ASLWP This flag is obsolete and is never set.
383 383
384 384 PR_AGENT This is the /proc agent lwp for the process.
385 385
386 386 pr_lwpid names the specific lwp.
387 387
388 388 pr_why and pr_what together describe, for a stopped lwp, the reason for
389 389 the stop. Possible values of pr_why and the associated pr_what are:
390 390
391 391 PR_REQUESTED indicates that the stop occurred in response to a stop
392 392 directive, normally because PCSTOP was applied or
393 393 because another lwp stopped on an event of interest
394 394 and the asynchronous-stop flag (see PCSET) was not set
395 395 for the process. pr_what is unused in this case.
396 396
397 397 PR_SIGNALLED indicates that the lwp stopped on receipt of a signal
398 398 (see PCSTRACE); pr_what holds the signal number that
399 399 caused the stop (for a newly-stopped lwp, the same
400 400 value is in pr_cursig).
401 401
402 402 PR_FAULTED indicates that the lwp stopped on incurring a hardware
403 403 fault (see PCSFAULT); pr_what holds the fault number
404 404 that caused the stop.
405 405
406 406 PR_SYSENTRY
407 407
408 408 PR_SYSEXIT indicate a stop on entry to or exit from a system call
409 409 (see PCSENTRY and PCSEXIT); pr_what holds the system
410 410 call number.
411 411
412 412 PR_JOBCONTROL indicates that the lwp stopped due to the default
413 413 action of a job control stop signal (see
414 414 sigaction(2)); pr_what holds the stopping signal
415 415 number.
416 416
417 417 PR_SUSPENDED indicates that the lwp stopped due to internal
418 418 synchronization of lwps within the process. pr_what
419 419 is unused in this case.
420 420
421 421 pr_cursig names the current signal, that is, the next signal to be
422 422 delivered to the lwp, if any. pr_info, when the lwp is in a PR_SIGNALLED
423 423 or PR_FAULTED stop, contains additional information pertinent to the
424 424 particular signal or fault (see <sys/siginfo.h>).
425 425
426 426 pr_lwppend identifies any synchronous or directed signals pending for the
427 427 lwp. pr_lwphold identifies those signals whose delivery is being blocked
428 428 by the lwp (the signal mask).
429 429
430 430 pr_action contains the signal action information pertaining to the
431 431 current signal (see sigaction(2)); it is undefined if pr_cursig is zero.
432 432 pr_altstack contains the alternate signal stack information for the lwp
433 433 (see sigaltstack(2)).
434 434
435 435 pr_oldcontext, if not zero, contains the address on the lwp stack of a
436 436 ucontext structure describing the previous user-level context (see
437 437 ucontext.h(3HEAD)). It is non-zero only if the lwp is executing in the
438 438 context of a signal handler.
439 439
440 440 pr_syscall is the number of the system call, if any, being executed by
441 441 the lwp; it is non-zero if and only if the lwp is stopped on PR_SYSENTRY
442 442 or PR_SYSEXIT, or is asleep within a system call (PR_ASLEEP is set). If
443 443 pr_syscall is non-zero, pr_nsysarg is the number of arguments to the
444 444 system call and pr_sysarg contains the actual arguments.
445 445
446 446 pr_rval1, pr_rval2, and pr_errno are defined only if the lwp is stopped
447 447 on PR_SYSEXIT or if the PR_VFORKP flag is set. If pr_errno is zero,
448 448 pr_rval1 and pr_rval2 contain the return values from the system call.
449 449 Otherwise, pr_errno contains the error number for the failing system call
450 450 (see <sys/errno.h>).
451 451
452 452 pr_clname contains the name of the lwp's scheduling class.
453 453
454 454 pr_tstamp, if the lwp is stopped, contains a time stamp marking when the
455 455 lwp stopped, in real time seconds and nanoseconds since an arbitrary time
456 456 in the past.
457 457
458 458 pr_utime is the amount of user level CPU time used by this LWP.
459 459
460 460 pr_stime is the amount of system level CPU time used by this LWP.
461 461
462 462 pr_ustack is the virtual address of the stack_t that contains the stack
463 463 boundaries for this LWP. See getustack(2) and _stack_grow(3C).
464 464
465 465 pr_instr contains the machine instruction to which the lwp's program
466 466 counter refers. The amount of data retrieved from the process is
467 467 machine-dependent. On SPARC based machines, it is a 32-bit word. On
468 468 x86-based machines, it is a single byte. In general, the size is that of
469 469 the machine's smallest instruction. If PR_PCINVAL is set, pr_instr is
470 470 undefined; this occurs whenever the lwp is not stopped or when the
471 471 program counter refers to an invalid virtual address.
472 472
473 473 pr_reg is an array holding the contents of a stopped lwp's general
474 474 registers.
475 475
476 476 SPARC On SPARC-based machines, the predefined constants
477 477 R_G0 ... R_G7, R_O0 ... R_O7, R_L0 ... R_L7,
478 478 R_I0 ... R_I7, R_PC, R_nPC, and R_Y can be used
479 479 as indices to refer to the corresponding
480 480 registers; previous register windows can be read
481 481 from their overflow locations on the stack
482 482 (however, see the gwindows file in the
483 483 /proc/pid/lwp/lwpid subdirectory).
484 484
485 485 SPARC V8 (32-bit) For SPARC V8 (32-bit) controlling processes, the
486 486 predefined constants R_PSR, R_WIM, and R_TBR can
487 487 be used as indices to refer to the corresponding
488 488 special registers. For SPARC V9 (64-bit)
489 489 controlling processes, the predefined constants
490 490 R_CCR, R_ASI, and R_FPRS can be used as indices to
491 491 refer to the corresponding special registers.
492 492
493 493 x86 (32-bit) For 32-bit x86 processes, the predefined constants
494 494 listed belowcan be used as indices to refer to the
495 495 corresponding registers.
496 496 SS
497 497 UESP
498 498 EFL
499 499 CS
500 500 EIP
501 501 ERR
502 502 TRAPNO
503 503 EAX
504 504 ECX
505 505 EDX
506 506 EBX
507 507 ESP
508 508 EBP
509 509 ESI
510 510 EDI
511 511 DS
512 512 ES
513 513 GS
514 514
515 515 The preceding constants are listed in
516 516 <sys/regset.h>.
517 517
518 518 Note that a 32-bit process can run on an x86
519 519 64-bit system, using the constants listed above.
520 520
521 521 x86 (64-bit) To read the registers of a 32- or a 64-bit
522 522 process, a 64-bit x86 process should use the
523 523 predefined constants listed below.
524 524 REG_GSBASE
525 525 REG_FSBASE
526 526 REG_DS
527 527 REG_ES
528 528 REG_GS
529 529 REG_FS
530 530 REG_SS
531 531 REG_RSP
532 532 REG_RFL
533 533 REG_CS
534 534 REG_RIP
535 535 REG_ERR
536 536 REG_TRAPNO
537 537 REG_RAX
538 538 REG_RCX
539 539 REG_RDX
540 540 REG_RBX
541 541 REG_RBP
542 542 REG_RSI
543 543 REG_RDI
544 544 REG_R8
545 545 REG_R9
546 546 REG_R10
547 547 REG_R11
548 548 REG_R12
549 549 REG_R13
550 550 REG_R14
551 551 REG_R15
552 552
553 553 The preceding constants are listed in
554 554 <sys/regset.h>.
555 555
556 556 pr_fpreg is a structure holding the contents of the floating-point
557 557 registers.
558 558
559 559 SPARC registers, both general and floating-point, as seen by a 64-bit
560 560 controlling process are the V9 versions of the registers, even if the
561 561 target process is a 32-bit (V8) process. V8 registers are a subset of
562 562 the V9 registers.
563 563
564 564 If the lwp is not stopped, all register values are undefined.
565 565
566 566 psinfo
567 567 Contains miscellaneous information about the process and the
568 568 representative lwp needed by the ps(1) command. psinfo remains
569 569 accessible after a process becomes a zombie. The file contains a psinfo
570 570 structure which contains an embedded lwpsinfo structure for the
571 571 representative lwp, as follows:
572 572
573 573 typedef struct psinfo {
574 574 int pr_flag; /* process flags (DEPRECATED: see below) */
575 575 int pr_nlwp; /* number of active lwps in the process */
576 576 int pr_nzomb; /* number of zombie lwps in the process */
577 577 pid_t pr_pid; /* process id */
578 578 pid_t pr_ppid; /* process id of parent */
579 579 pid_t pr_pgid; /* process id of process group leader */
580 580 pid_t pr_sid; /* session id */
581 581 uid_t pr_uid; /* real user id */
582 582 uid_t pr_euid; /* effective user id */
583 583 gid_t pr_gid; /* real group id */
584 584 gid_t pr_egid; /* effective group id */
585 585 uintptr_t pr_addr; /* address of process */
586 586 size_t pr_size; /* size of process image in Kbytes */
587 587 size_t pr_rssize; /* resident set size in Kbytes */
588 588 dev_t pr_ttydev; /* controlling tty device (or PRNODEV) */
589 589 ushort_t pr_pctcpu; /* % of recent cpu time used by all lwps */
590 590 ushort_t pr_pctmem; /* % of system memory used by process */
591 591 timestruc_t pr_start; /* process start time, from the epoch */
592 592 timestruc_t pr_time; /* cpu time for this process */
593 593 timestruc_t pr_ctime; /* cpu time for reaped children */
594 594 char pr_fname[PRFNSZ]; /* name of exec'ed file */
595 595 char pr_psargs[PRARGSZ]; /* initial characters of arg list */
596 596 int pr_wstat; /* if zombie, the wait() status */
597 597 int pr_argc; /* initial argument count */
598 598 uintptr_t pr_argv; /* address of initial argument vector */
599 599 uintptr_t pr_envp; /* address of initial environment vector */
600 600 char pr_dmodel; /* data model of the process */
601 601 taskid_t pr_taskid; /* task id */
602 602 projid_t pr_projid; /* project id */
603 603 poolid_t pr_poolid; /* pool id */
604 604 zoneid_t pr_zoneid; /* zone id */
605 605 ctid_t pr_contract; /* process contract id */
606 606 lwpsinfo_t pr_lwp; /* information for representative lwp */
607 607 } psinfo_t;
608 608
609 609 Some of the entries in psinfo, such as pr_addr, refer to internal kernel
610 610 data structures and should not be expected to retain their meanings
611 611 across different versions of the operating system.
612 612
613 613 psinfo_t.pr_flag is a deprecated interface that should no longer be used.
614 614 Applications currently relying on the SSYS bit in pr_flag should migrate
615 615 to checking PR_ISSYS in the pstatus structure's pr_flags field.
616 616
617 617 pr_pctcpu and pr_pctmem are 16-bit binary fractions in the range 0.0 to
618 618 1.0 with the binary point to the right of the high-order bit (1.0 ==
619 619 0x8000). pr_pctcpu is the summation over all lwps in the process.
620 620
621 621 pr_lwp contains the ps(1) information for the representative lwp. If the
622 622 process is a zombie, pr_nlwp, pr_nzomb, and pr_lwp.pr_lwpid are zero and
623 623 the other fields of pr_lwp are undefined:
624 624
625 625 typedef struct lwpsinfo {
626 626 int pr_flag; /* lwp flags (DEPRECATED: see below) */
627 627 id_t pr_lwpid; /* lwp id */
628 628 uintptr_t pr_addr; /* internal address of lwp */
629 629 uintptr_t pr_wchan; /* wait addr for sleeping lwp */
630 630 char pr_stype; /* synchronization event type */
631 631 char pr_state; /* numeric lwp state */
632 632 char pr_sname; /* printable character for pr_state */
633 633 char pr_nice; /* nice for cpu usage */
634 634 short pr_syscall; /* system call number (if in syscall) */
635 635 char pr_oldpri; /* pre-SVR4, low value is high priority */
636 636 char pr_cpu; /* pre-SVR4, cpu usage for scheduling */
637 637 int pr_pri; /* priority, high value = high priority */
638 638 ushort_t pr_pctcpu; /* % of recent cpu time used by this lwp */
639 639 timestruc_t pr_start; /* lwp start time, from the epoch */
640 640 timestruc_t pr_time; /* cpu time for this lwp */
641 641 char pr_clname[PRCLSZ]; /* scheduling class name */
642 642 char pr_name[PRFNSZ]; /* name of system lwp */
643 643 processorid_t pr_onpro; /* processor which last ran this lwp */
644 644 processorid_t pr_bindpro;/* processor to which lwp is bound */
645 645 psetid_t pr_bindpset; /* processor set to which lwp is bound */
646 646 lgrp_id_t pr_lgrp; /* home lgroup */
647 647 } lwpsinfo_t;
648 648
649 649 Some of the entries in lwpsinfo, such as pr_addr, pr_wchan, pr_stype,
650 650 pr_state, and pr_name, refer to internal kernel data structures and
651 651 should not be expected to retain their meanings across different versions
652 652 of the operating system.
653 653
654 654 lwpsinfo_t.pr_flag is a deprecated interface that should no longer be
655 655 used.
656 656
657 657 pr_pctcpu is a 16-bit binary fraction, as described above. It represents
658 658 the CPU time used by the specific lwp. On a multi-processor machine, the
659 659 maximum value is 1/N, where N is the number of CPUs.
660 660
661 661 pr_contract is the id of the process contract of which the process is a
662 662 member. See contract(4) and process(4).
663 663
664 664 cred
665 665 Contains a description of the credentials associated with the process:
666 666
667 667 typedef struct prcred {
668 668 uid_t pr_euid; /* effective user id */
669 669 uid_t pr_ruid; /* real user id */
670 670 uid_t pr_suid; /* saved user id (from exec) */
671 671 gid_t pr_egid; /* effective group id */
672 672 gid_t pr_rgid; /* real group id */
673 673 gid_t pr_sgid; /* saved group id (from exec) */
674 674 int pr_ngroups; /* number of supplementary groups */
675 675 gid_t pr_groups[1]; /* array of supplementary groups */
676 676 } prcred_t;
677 677
678 678 The array of associated supplementary groups in pr_groups
679 679 is of variable length; the cred file contains all of the supplementary
680 680 groups. pr_ngroups indicates the number of supplementary groups. (See
681 681 also the PCSCRED and PCSCREDX control operations.)
682 682
683 683 priv
684 684 Contains a description of the privileges associated with the process:
685 685
686 686 typedef struct prpriv {
687 687 uint32_t pr_nsets; /* number of privilege set */
688 688 uint32_t pr_setsize; /* size of privilege set */
689 689 uint32_t pr_infosize; /* size of supplementary data */
690 690 priv_chunk_t pr_sets[1]; /* array of sets */
691 691 } prpriv_t;
692 692
693 693 The actual dimension of the pr_sets[] field is
694 694 pr_sets[pr_nsets][pr_setsize]
695 695
696 696 which is followed by additional information about the process state
697 697 pr_infosize bytes in size.
698 698
699 699 The full size of the structure can be computed using
700 700 PRIV_PRPRIV_SIZE(prpriv_t *).
701 701
702 702 secflags
703 703 This file contains the security-flags of the process. It contains a
704 704 description of the security flags associated with the process.
705 705
706 706 typedef struct prsecflags {
707 707 uint32_t pr_version; /* ABI Versioning of this structure */
708 708 secflagset_t pr_effective; /* Effective flags */
709 709 secflagset_t pr_inherit; /* Inheritable flags */
710 710 secflagset_t pr_lower; /* Lower flags */
711 711 secflagset_t pr_upper; /* Upper flags */
712 712 } prsecflags_t;
713 713
714 714 The pr_version field is a version number for the structure, currently
715 715 PRSECFLAGS_VERSION_1.
716 716
717 717 sigact
718 718 Contains an array of sigaction structures describing the current
719 719 dispositions of all signals associated with the traced process (see
720 720 sigaction(2)). Signal numbers are displaced by 1 from array indices, so
721 721 that the action for signal number n appears in position n-1 of the array.
722 722
723 723 auxv
724 724 Contains the initial values of the process's aux vector in an array of
725 725 auxv_t structures (see <sys/auxv.h>). The values are those that were
726 726 passed by the operating system as startup information to the dynamic
727 727 linker.
728 728
729 729 ldt
730 730 This file exists only on x86-based machines. It is non-empty only if the
731 731 process has established a local descriptor table (LDT). If non-empty,
732 732 the file contains the array of currently active LDT entries in an array
733 733 of elements of type struct ssd, defined in <sys/sysi86.h>, one element
734 734 for each active LDT entry.
735 735
736 736 map, xmap
737 737 Contain information about the virtual address map of the process. The
738 738 map file contains an array of prmap structures while the xmap file
739 739 contains an array of prxmap structures. Each structure describes a
740 740 contiguous virtual address region in the address space of the traced
741 741 process:
742 742
743 743 typedef struct prmap {
744 744 uintptr_tpr_vaddr; /* virtual address of mapping */
745 745 size_t pr_size; /* size of mapping in bytes */
746 746 char pr_mapname[PRMAPSZ]; /* name in /proc/pid/object */
747 747 offset_t pr_offset; /* offset into mapped object, if any */
748 748 int pr_mflags; /* protection and attribute flags */
749 749 int pr_pagesize; /* pagesize for this mapping in bytes */
750 750 int pr_shmid; /* SysV shared memory identifier */
751 751 } prmap_t;
752 752
753 753 typedef struct prxmap {
754 754 uintptr_t pr_vaddr; /* virtual address of mapping */
755 755 size_t pr_size; /* size of mapping in bytes */
756 756 char pr_mapname[PRMAPSZ]; /* name in /proc/pid/object */
757 757 offset_t pr_offset; /* offset into mapped object, if any */
758 758 int pr_mflags; /* protection and attribute flags */
759 759 int pr_pagesize; /* pagesize for this mapping in bytes */
760 760 int pr_shmid; /* SysV shared memory identifier */
761 761 dev_t pr_dev; /* device of mapped object, if any */
762 762 uint64_t pr_ino; /* inode of mapped object, if any */
763 763 size_t pr_rss; /* pages of resident memory */
764 764 size_t pr_anon; /* pages of resident anonymous memory */
765 765 size_t pr_locked; /* pages of locked memory */
766 766 uint64_t pr_hatpagesize; /* pagesize of mapping */
767 767 } prxmap_t;
768 768
769 769 pr_vaddr is the virtual address of the mapping within the traced process
770 770 and pr_size is its size in bytes. pr_mapname, if it does not contain a
771 771 null string, contains the name of a file in the object directory (see
772 772 below) that can be opened read-only to obtain a file descriptor for the
773 773 mapped file associated with the mapping. This enables a debugger to find
774 774 object file symbol tables without having to know the real path names of
775 775 the executable file and shared libraries of the process. pr_offset is
776 776 the 64-bit offset within the mapped file (if any) to which the virtual
777 777 address is mapped.
778 778
779 779 pr_mflags is a bit-mask of protection and attribute flags:
780 780
781 781 MA_READ mapping is readable by the traced process.
782 782
783 783 MA_WRITE mapping is writable by the traced process.
784 784
785 785 MA_EXEC mapping is executable by the traced process.
786 786
787 787 MA_SHARED mapping changes are shared by the mapped object.
788 788
789 789 MA_ISM mapping is intimate shared memory (shared MMU
790 790 resources)
791 791
792 792 MAP_NORESERVE
793 793 mapping does not have swap space reserved (mapped with
794 794 MAP_NORESERVE)
795 795
796 796 MA_SHM mapping System V shared memory
797 797
798 798 A contiguous area of the address space having the same underlying mapped
799 799 object may appear as multiple mappings due to varying read, write, and
800 800 execute attributes. The underlying mapped object does not change over
801 801 the range of a single mapping. An I/O operation to a mapping marked
802 802 MA_SHARED fails if applied at a virtual address not corresponding to a
803 803 valid page in the underlying mapped object. A write to a MA_SHARED
804 804 mapping that is not marked MA_WRITE fails. Reads and writes to private
805 805 mappings always succeed. Reads and writes to unmapped addresses fail.
806 806
807 807 pr_pagesize is the page size for the mapping, currently always the system
808 808 pagesize.
809 809
810 810 pr_shmid is the shared memory identifier, if any, for the mapping. Its
811 811 value is -1 if the mapping is not System V shared memory. See shmget(2).
812 812
813 813 pr_dev is the device of the mapped object, if any, for the mapping. Its
814 814 value is PRNODEV (-1) if the mapping does not have a device.
815 815
816 816 pr_ino is the inode of the mapped object, if any, for the mapping. Its
817 817 contents are only valid if pr_dev is not PRNODEV.
818 818
819 819 pr_rss is the number of resident pages of memory for the mapping. The
820 820 number of resident bytes for the mapping may be determined by multiplying
821 821 pr_rss by the page size given by pr_pagesize.
822 822
823 823 pr_anon is the number of resident anonymous memory pages (pages which are
824 824 private to this process) for the mapping.
825 825
826 826 pr_locked is the number of locked pages for the mapping. Pages which are
827 827 locked are always resident in memory.
828 828
829 829 pr_hatpagesize is the size, in bytes, of the HAT (MMU) translation for
830 830 the mapping. pr_hatpagesize may be different than pr_pagesize. The
831 831 possible values are hardware architecture specific, and may change over a
832 832 mapping's lifetime.
833 833
834 834 rmap
835 835 Contains information about the reserved address ranges of the process.
836 836 The file contains an array of prmap structures, as defined above for the
837 837 map file. Each structure describes a contiguous virtual address region
838 838 in the address space of the traced process that is reserved by the system
839 839 in the sense that an mmap(2) system call that does not specify MAP_FIXED
840 840 will not use any part of it for the new mapping. Examples of such
841 841 reservations include the address ranges reserved for the process stack
842 842 and the individual thread stacks of a multi-threaded process.
843 843
844 844 cwd
845 845 A symbolic link to the process's current working directory. See
846 846 chdir(2). A readlink(2) of /proc/pid/cwd yields a null string. However,
847 847 it can be opened, listed, and searched as a directory, and can be the
848 848 target of chdir(2).
849 849
850 850 root
851 851 A symbolic link to the process's root directory. /proc/pid/root can
852 852 differ from the system root directory if the process or one of its
853 853 ancestors executed chroot(2) as super user. It has the same semantics as
854 854 /proc/pid/cwd.
855 855
856 856 fd
857 857 A directory containing references to the open files of the process. Each
858 858 entry is a decimal number corresponding to an open file descriptor in the
↓ open down ↓ |
858 lines elided |
↑ open up ↑ |
859 859 process.
860 860
861 861 If an entry refers to a regular file, it can be opened with normal file
862 862 system semantics but, to ensure that the controlling process cannot gain
863 863 greater access than the controlled process, with no file access modes
864 864 other than its read/write open modes in the controlled process. If an
865 865 entry refers to a directory, it can be accessed with the same semantics
866 866 as /proc/pid/cwd. An attempt to open any other type of entry fails with
867 867 EACCES.
868 868
869 + fdinfo
870 + A directory containing information about each of the process's open
871 + files. Each entry is a decimal number corresponding to an open file
872 + descriptor in the process. Each file contains a prfdinfov2_t structure
873 + as follows:
874 +
875 + typedef struct prfdinfov2 {
876 + int pr_fd; /* file descriptor number */
877 + mode_t pr_mode; /* (see st_mode in stat(2)) */
878 + uint64_t pr_ino; /* inode number */
879 + uint64_t pr_size; /* file size */
880 + int64_t pr_offset; /* current offset of file descriptor */
881 + uid_t pr_uid; /* owner's user id */
882 + gid_t pr_gid; /* owner's group id */
883 + major_t pr_major; /* major number of device containing file */
884 + minor_t pr_minor; /* minor number of device containing file */
885 + major_t pr_rmajor; /* major number (if special file) */
886 + minor_t pr_rminor; /* minor number (if special file) */
887 + int pr_fileflags; /* (see F_GETXFL in fcntl(2)) */
888 + int pr_fdflags; /* (see F_GETFD in fcntl(2)) */
889 + short pr_locktype; /* (see F_GETLK in fcntl(2)) */
890 + pid_t pr_lockpid; /* process holding file lock (see F_GETLK) */
891 + int pr_locksysid; /* sysid of locking process (see F_GETLK) */
892 + pid_t pr_peerpid; /* peer process (socket, door) */
893 + int pr_filler[25]; /* reserved for future use */
894 + char pr_peername[PRFNSZ]; /* peer process name */
895 + #if __STDC_VERSION__ >= 199901L
896 + char pr_misc[]; /* self describing structures */
897 + #else
898 + char pr_misc[1];
899 + #endif
900 + } prfdinfov2_t;
901 +
902 + The pr_misc element points to a list of additional miscellaneous data
903 + items, each of which has a header of type pr_misc_header_t specifying the
904 + size and type, and some data which immediately follow the header.
905 +
906 + typedef struct pr_misc_header {
907 + uint_t pr_misc_size;
908 + uint_t pr_misc_type;
909 + } pr_misc_header_t;
910 +
911 + The pr_misc_size field is the sum of the sizes of the header and the
912 + associated data. The end of the list is indicated by a header with a
913 + zero size.
914 +
915 + The following miscellaneous data types can be present:
916 +
917 + PR_PATHNAME The file descriptor's path in the
918 + filesystem. This is a sequence of
919 + characters of the length indicated by
920 + pr_misc_size and it not guaranteed to be
921 + null-terminated.
922 +
923 + PR_SOCKETNAME A sockaddr structure representing the
924 + local socket name for this file
925 + descriptor, as would be returned by
926 + calling getsockname() within the process.
927 +
928 + PR_PEERSOCKNAME A sockaddr structure representing the peer
929 + socket name for this file desciptor, as
930 + would be returned by calling getpeername()
931 + within the process.
932 +
933 + PR_SOCKOPTS_BOOL_OPTS An unsigned integer which has bits set
934 + corresponding to options which are set on
935 + the underlying socket. The following bits
936 + may be set:
937 +
938 + PR_SO_DEBUG
939 +
940 + PR_SO_REUSEADDR
941 +
942 + PR_SO_REUSEPORT
943 +
944 + PR_SO_KEEPALIVE
945 +
946 + PR_SO_DONTROUTE
947 +
948 + PR_SO_BROADCAST
949 +
950 + PR_SO_OOBINLINE
951 +
952 + PR_SO_DGRAM_ERRIND
953 +
954 + PR_SO_ALLZONES
955 +
956 + PR_SO_MAC_EXEMPT
957 +
958 + PR_SO_EXCLBIND
959 +
960 + PR_SO_PASSIVE_CONNECT
961 +
962 + PR_SO_ACCEPTCONN
963 +
964 + PR_UDP_NAT_T_ENDPOINT
965 +
966 + PR_SO_VRRP
967 +
968 + PR_SO_MAC_IMPLICIT
969 +
970 + PR_SOCKOPT_LINGER A struct linger as would be returned by
971 + calling getsockopt(SO_LINGER) within the
972 + process.
973 +
974 + PR_SOCKOPT_SNDBUF The data that would be returned by calling
975 + getsockopt(SO_SNDBUF) within the process.
976 +
977 + PR_SOCKOPT_RCVBUF The data that would be returned by calling
978 + getsockopt(SO_RCVBUF) within the process.
979 +
980 + PR_SOCKOPT_IP_NEXTHOP The data that would be returned by calling
981 + getsockopt(IPPROTO_IP, IP_NEXTHOP) within
982 + the process.
983 +
984 + PR_SOCKOPT_IPV6_NEXTHOP The data that would be returned by calling
985 + getsockopt(IPPROTO_IPV6, IPV6_NEXTHOP)
986 + within the process.
987 +
988 + PR_SOCKOPT_TYPE The data that would be returned by calling
989 + getsockopt(SO_TYPE) within the process.
990 +
991 + PR_SOCKOPT_TCP_CONGESTION For TCP sockets, the data that would be
992 + returned by calling
993 + getsockopt(IPPROTO_TCP, TCP_CONGESTION)
994 + within the process. This is a character
995 + array containing the name of the
996 + congestion algorithm in use for the
997 + socket.
998 +
999 + PR_SOCKFILTERS_PRIV Private data relating to any socket
1000 + filters pushed on this descriptor.
1001 +
869 1002 object
870 1003 A directory containing read-only files with names corresponding to the
871 1004 pr_mapname entries in the map and pagedata files. Opening such a file
872 1005 yields a file descriptor for the underlying mapped file associated with
873 1006 an address-space mapping in the process. The file name a.out appears in
874 1007 the directory as an alias for the process's executable file.
875 1008
876 1009 The object directory makes it possible for a controlling process to gain
877 1010 access to the object file and any shared libraries (and consequently the
878 1011 symbol tables) without having to know the actual path names of the
879 1012 executable files.
880 1013
881 1014 path
882 1015 A directory containing symbolic links to files opened by the process.
883 1016 The directory includes one entry for cwd and root. The directory also
884 1017 contains a numerical entry for each file descriptor in the fd directory,
885 1018 and entries matching those in the object directory. If this information
886 1019 is not available, any attempt to read the contents of the symbolic link
887 1020 will fail. This is most common for files that do not exist in the
888 1021 filesystem namespace (such as FIFOs and sockets), but can also happen for
889 1022 regular files. For the file descriptor entries, the path may be
890 1023 different from the one used by the process to open the file.
891 1024
892 1025 pagedata
893 1026 Opening the page data file enables tracking of address space references
894 1027 and modifications on a per-page basis.
895 1028
896 1029 A read(2) of the page data file descriptor returns structured page data
897 1030 and atomically clears the page data maintained for the file by the
898 1031 system. That is to say, each read returns data collected since the last
899 1032 read; the first read returns data collected since the file was opened.
900 1033 When the call completes, the read buffer contains the following structure
901 1034 as its header and thereafter contains a number of section header
902 1035 structures and associated byte arrays that must be accessed by walking
903 1036 linearly through the buffer.
904 1037
905 1038 typedef struct prpageheader {
906 1039 timestruc_t pr_tstamp; /* real time stamp, time of read() */
907 1040 ulong_t pr_nmap; /* number of address space mappings */
908 1041 ulong_t pr_npage; /* total number of pages */
909 1042 } prpageheader_t;
910 1043
911 1044 The header is followed by pr_nmap prasmap structures and associated data
912 1045 arrays. The prasmap structure contains the following elements:
913 1046
914 1047 typedef struct prasmap {
915 1048 uintptr_t pr_vaddr; /* virtual address of mapping */
916 1049 ulong_t pr_npage; /* number of pages in mapping */
917 1050 char pr_mapname[PRMAPSZ]; /* name in /proc/pid/object */
918 1051 offset_t pr_offset; /* offset into mapped object, if any */
919 1052 int pr_mflags; /* protection and attribute flags */
920 1053 int pr_pagesize; /* pagesize for this mapping in bytes */
921 1054 int pr_shmid; /* SysV shared memory identifier */
922 1055 } prasmap_t;
923 1056
924 1057 Each section header is followed by pr_npage bytes, one byte for each page
925 1058 in the mapping, plus 0-7 null bytes at the end so that the next prasmap
926 1059 structure begins on an eight-byte aligned boundary. Each data byte may
927 1060 contain these flags:
928 1061
929 1062 PG_REFERENCED page has been referenced.
930 1063
931 1064 PG_MODIFIED page has been modified.
932 1065
933 1066 If the read buffer is not large enough to contain all of the page data,
934 1067 the read fails with E2BIG and the page data is not cleared. The required
935 1068 size of the read buffer can be determined through fstat(2). Application
936 1069 of lseek(2) to the page data file descriptor is ineffective; every read
937 1070 starts from the beginning of the file. Closing the page data file
938 1071 descriptor terminates the system overhead associated with collecting the
939 1072 data.
940 1073
941 1074 More than one page data file descriptor for the same process can be
942 1075 opened, up to a system-imposed limit per traced process. A read of one
943 1076 does not affect the data being collected by the system for the others.
944 1077 An open of the page data file will fail with ENOMEM if the system-imposed
945 1078 limit would be exceeded.
946 1079
947 1080 watch
948 1081 Contains an array of prwatch structures, one for each watched area
949 1082 established by the PCWATCH control operation. See PCWATCH for details.
950 1083
951 1084 usage
952 1085 Contains process usage information described by a prusage structure which
953 1086 contains at least the following fields:
954 1087
955 1088 typedef struct prusage {
956 1089 id_t pr_lwpid; /* lwp id. 0: process or defunct */
957 1090 int pr_count; /* number of contributing lwps */
958 1091 timestruc_t pr_tstamp; /* real time stamp, time of read() */
959 1092 timestruc_t pr_create; /* process/lwp creation time stamp */
960 1093 timestruc_t pr_term; /* process/lwp termination time stamp */
961 1094 timestruc_t pr_rtime; /* total lwp real (elapsed) time */
962 1095 timestruc_t pr_utime; /* user level CPU time */
963 1096 timestruc_t pr_stime; /* system call CPU time */
964 1097 timestruc_t pr_ttime; /* other system trap CPU time */
965 1098 timestruc_t pr_tftime; /* text page fault sleep time */
966 1099 timestruc_t pr_dftime; /* data page fault sleep time */
967 1100 timestruc_t pr_kftime; /* kernel page fault sleep time */
968 1101 timestruc_t pr_ltime; /* user lock wait sleep time */
969 1102 timestruc_t pr_slptime; /* all other sleep time */
970 1103 timestruc_t pr_wtime; /* wait-cpu (latency) time */
971 1104 timestruc_t pr_stoptime; /* stopped time */
972 1105 ulong_t pr_minf; /* minor page faults */
973 1106 ulong_t pr_majf; /* major page faults */
974 1107 ulong_t pr_nswap; /* swaps */
975 1108 ulong_t pr_inblk; /* input blocks */
976 1109 ulong_t pr_oublk; /* output blocks */
977 1110 ulong_t pr_msnd; /* messages sent */
978 1111 ulong_t pr_mrcv; /* messages received */
979 1112 ulong_t pr_sigs; /* signals received */
980 1113 ulong_t pr_vctx; /* voluntary context switches */
981 1114 ulong_t pr_ictx; /* involuntary context switches */
982 1115 ulong_t pr_sysc; /* system calls */
983 1116 ulong_t pr_ioch; /* chars read and written */
984 1117 } prusage_t;
985 1118
986 1119 Microstate accounting is now continuously enabled. While this
987 1120 information was previously an estimate, if microstate accounting were not
988 1121 enabled, the current information is now never an estimate represents time
989 1122 the process has spent in various states.
990 1123
991 1124 lstatus
992 1125 Contains a prheader structure followed by an array of lwpstatus
993 1126 structures, one for each active lwp in the process (see also
994 1127 /proc/pid/lwp/lwpid/lwpstatus, below). The prheader structure describes
995 1128 the number and size of the array entries that follow.
996 1129
997 1130 typedef struct prheader {
998 1131 long pr_nent; /* number of entries */
999 1132 size_t pr_entsize; /* size of each entry, in bytes */
1000 1133 } prheader_t;
1001 1134
1002 1135 The lwpstatus structure may grow by the addition of elements at the end
1003 1136 in future releases of the system. Programs must use pr_entsize in the
1004 1137 file header to index through the array. These comments apply to all
1005 1138 /proc files that include a prheader structure (lpsinfo and lusage,
1006 1139 below).
1007 1140
1008 1141 lpsinfo
1009 1142 Contains a prheader structure followed by an array of lwpsinfo
1010 1143 structures, one for eachactive and zombie lwp in the process. See also
1011 1144 /proc/pid/lwp/lwpid/lwpsinfo, below.
1012 1145
1013 1146 lusage
1014 1147 Contains a prheader structure followed by an array of prusage structures,
1015 1148 one for each active lwp in the process, plus an additional element at the
1016 1149 beginning that contains the summation over all defunct lwps (lwps that
1017 1150 once existed but no longer exist in the process). Excluding the
1018 1151 pr_lwpid, pr_tstamp, pr_create, and pr_term entries, the entry-by-entry
1019 1152 summation over all these structures is the definition of the process
1020 1153 usage information obtained from the usage file. (See also
1021 1154 /proc/pid/lwp/lwpid/lwpusage, below.)
1022 1155
1023 1156 lwp
1024 1157 A directory containing entries each of which names an active or zombie
1025 1158 lwp within the process. These entries are themselves directories
1026 1159 containing additional files as described below. Only the lwpsinfo file
1027 1160 exists in the directory of a zombie lwp.
1028 1161
1029 1162 STRUCTURE OF /proc/pid/lwp/lwpid
1030 1163 A given directory /proc/pid/lwp/lwpid contains the following entries:
1031 1164
1032 1165 lwpctl
1033 1166 Write-only control file. The messages written to this file affect the
1034 1167 specific lwp rather than the representative lwp, as is the case for the
1035 1168 process's ctl file.
1036 1169
1037 1170 lwpname
1038 1171 A buffer of THREAD_NAME_MAX bytes representing the LWP name; the buffer
1039 1172 is zero-filled if the thread name is shorter than the buffer. If no
1040 1173 thread name is set, the buffer contains the empty string. A read with a
1041 1174 buffer shorter than THREAD_NAME_MAX bytes is not guaranteed to be NUL-
1042 1175 terminated. Writing to this file will set the LWP name for the specific
1043 1176 lwp. This file may not be present in older operating system versions.
1044 1177 THREAD_NAME_MAX may increase in the future; clients should be prepared
1045 1178 for this.
1046 1179
1047 1180 lwpstatus
1048 1181 lwp-specific state information. This file contains the lwpstatus
1049 1182 structure for the specific lwp as described above for the representative
1050 1183 lwp in the process's status file.
1051 1184
1052 1185 lwpsinfo
1053 1186 lwp-specific ps(1) information. This file contains the lwpsinfo
1054 1187 structure for the specific lwp as described above for the representative
1055 1188 lwp in the process's psinfo file. The lwpsinfo file remains accessible
1056 1189 after an lwp becomes a zombie.
1057 1190
1058 1191 lwpusage
1059 1192 This file contains the prusage structure for the specific lwp as
1060 1193 described above for the process's usage file.
1061 1194
1062 1195 gwindows
1063 1196 This file exists only on SPARC based machines. If it is non-empty, it
1064 1197 contains a gwindows_t structure, defined in <sys/regset.h>, with the
1065 1198 values of those SPARC register windows that could not be stored on the
1066 1199 stack when the lwp stopped. Conditions under which register windows are
1067 1200 not stored on the stack are: the stack pointer refers to nonexistent
1068 1201 process memory or the stack pointer is improperly aligned. If the lwp is
1069 1202 not stopped or if there are no register windows that could not be stored
1070 1203 on the stack, the file is empty (the usual case).
1071 1204
1072 1205 xregs
1073 1206 Extra state registers. The extra state register set is architecture
1074 1207 dependent; this file is empty if the system does not support extra state
1075 1208 registers. If the file is non-empty, it contains an architecture
1076 1209 dependent structure of type prxregset_t, defined in <procfs.h>, with the
1077 1210 values of the lwp's extra state registers. If the lwp is not stopped,
1078 1211 all register values are undefined. See also the PCSXREG control
1079 1212 operation, below.
1080 1213
1081 1214 asrs
1082 1215 This file exists only for 64-bit SPARC V9 processes. It contains an
1083 1216 asrset_t structure, defined in <sys/regset.h>, containing the values of
1084 1217 the lwp's platform-dependent ancillary state registers. If the lwp is
1085 1218 not stopped, all register values are undefined. See also the PCSASRS
1086 1219 control operation, below.
1087 1220
1088 1221 spymaster
1089 1222 For an agent lwp (see PCAGENT), this file contains a psinfo_t structure
1090 1223 that corresponds to the process that created the agent lwp at the time
1091 1224 the agent was created. This structure is identical to that retrieved via
1092 1225 the psinfo file, with one modification: the pr_time field does not
1093 1226 correspond to the CPU time for the process, but rather to the creation
1094 1227 time of the agent lwp.
1095 1228
1096 1229 templates
1097 1230 A directory which contains references to the active templates for the
1098 1231 lwp, named by the contract type. Changes made to an active template
1099 1232 descriptor do not affect the original template which was activated,
1100 1233 though they do affect the active template. It is not possible to
1101 1234 activate an active template descriptor. See contract(4).
1102 1235
1103 1236 CONTROL MESSAGES
1104 1237 Process state changes are effected through messages written to a
1105 1238 process's ctl file or to an individual lwp's lwpctl file. All control
1106 1239 messages consist of a long that names the specific operation followed by
1107 1240 additional data containing the operand, if any.
1108 1241
1109 1242 Multiple control messages may be combined in a single write(2) (or
1110 1243 writev(2)) to a control file, but no partial writes are permitted. That
1111 1244 is, each control message, operation code plus operand, if any, must be
1112 1245 presented in its entirety to the write(2) and not in pieces over several
1113 1246 system calls. If a control operation fails, no subsequent operations
1114 1247 contained in the same write(2) are attempted.
1115 1248
1116 1249 Descriptions of the allowable control messages follow. In all cases,
1117 1250 writing a message to a control file for a process or lwp that has
1118 1251 terminated elicits the error ENOENT.
1119 1252
1120 1253 PCSTOP PCDSTOP PCWSTOP PCTWSTOP
1121 1254 When applied to the process control file, PCSTOP directs all lwps to stop
1122 1255 and waits for them to stop, PCDSTOP directs all lwps to stop without
1123 1256 waiting for them to stop, and PCWSTOP simply waits for all lwps to stop.
1124 1257 When applied to an lwp control file, PCSTOP directs the specific lwp to
1125 1258 stop and waits until it has stopped, PCDSTOP directs the specific lwp to
1126 1259 stop without waiting for it to stop, and PCWSTOP
1127 1260 simply waits for the specific lwp to stop. When applied to an lwp
1128 1261 control file, PCSTOP and PCWSTOP complete when the lwp stops on an event
1129 1262 of interest, immediately if already so stopped; when applied to the
1130 1263 process control file, they complete when every lwp has stopped either on
1131 1264 an event of interest or on a PR_SUSPENDED stop.
1132 1265
1133 1266 PCTWSTOP is identical to PCWSTOP except that it enables the operation to
1134 1267 time out, to avoid waiting forever for a process or lwp that may never
1135 1268 stop on an event of interest. PCTWSTOP takes a long operand specifying a
1136 1269 number of milliseconds; the wait will terminate successfully after the
1137 1270 specified number of milliseconds even if the process or lwp has not
1138 1271 stopped; a timeout value of zero makes the operation identical to
1139 1272 PCWSTOP.
1140 1273
1141 1274 An "event of interest" is either a PR_REQUESTED stop or a stop that has
1142 1275 been specified in the process's tracing flags (set by PCSTRACE, PCSFAULT,
1143 1276 PCSENTRY, and PCSEXIT). PR_JOBCONTROL
1144 1277 and PR_SUSPENDED stops are specifically not events of interest. (An lwp
1145 1278 may stop twice due to a stop signal, first showing PR_SIGNALLED if the
1146 1279 signal is traced and again showing PR_JOBCONTROL if the lwp is set
1147 1280 running without clearing the signal.) If PCSTOP or PCDSTOP is applied to
1148 1281 an lwp that is stopped, but not on an event of interest, the stop
1149 1282 directive takes effect when the lwp is restarted by the competing
1150 1283 mechanism. At that time, the lwp enters a PR_REQUESTED stop before
1151 1284 executing any user-level code.
1152 1285
1153 1286 A write of a control message that blocks is interruptible by a signal so
1154 1287 that, for example, an alarm(2) can be set to avoid waiting forever for a
1155 1288 process or lwp that may never stop on an event of interest. If PCSTOP is
1156 1289 interrupted, the lwp stop directives remain in effect even though the
1157 1290 write(2) returns an error. (Use of PCTWSTOP with a non-zero timeout is
1158 1291 recommended over PCWSTOP with an alarm(2).)
1159 1292
1160 1293 A system process (indicated by the PR_ISSYS flag) never executes at user
1161 1294 level, has no user-level address space visible through /proc, and cannot
1162 1295 be stopped. Applying one of these operations to a system process or any
1163 1296 of its lwps elicits the error EBUSY.
1164 1297
1165 1298 PCRUN
1166 1299 Make an lwp runnable again after a stop. This operation takes a long
1167 1300 operand containing zero or more of the following flags:
1168 1301
1169 1302 PRCSIG clears the current signal, if any (see PCCSIG).
1170 1303
1171 1304 PRCFAULT clears the current fault, if any (see PCCFAULT).
1172 1305
1173 1306 PRSTEP directs the lwp to execute a single machine instruction.
1174 1307 On completion of the instruction, a trace trap occurs. If
1175 1308 FLTTRACE is being traced, the lwp stops; otherwise, it is
1176 1309 sent SIGTRAP. If SIGTRAP is being traced and is not
1177 1310 blocked, the lwp stops. When the lwp stops on an event of
1178 1311 interest, the single-step directive is cancelled, even if
1179 1312 the stop occurs before the instruction is executed. This
1180 1313 operation requires hardware and operating system support
1181 1314 and may not be implemented on all processors. It is
1182 1315 implemented on SPARC and x86-based machines.
1183 1316
1184 1317 PRSABORT is meaningful only if the lwp is in a PR_SYSENTRY stop or
1185 1318 is marked PR_ASLEEP; it instructs the lwp to abort
1186 1319 execution of the system call (see PCSENTRY and PCSEXIT).
1187 1320
1188 1321 PRSTOP directs the lwp to stop again as soon as possible after
1189 1322 resuming execution (see PCDSTOP). In particular, if the
1190 1323 lwp is stopped on PR_SIGNALLED or PR_FAULTED, the next stop
1191 1324 will show PR_REQUESTED, no other stop will have intervened,
1192 1325 and the lwp will not have executed any user-level code.
1193 1326
1194 1327 When applied to an lwp control file, PCRUN clears any outstanding
1195 1328 directed-stop request and makes the specific lwp runnable. The operation
1196 1329 fails with EBUSY if the specific lwp is not stopped on an event of
1197 1330 interest or has not been directed to stop or if the agent lwp exists and
1198 1331 this is not the agent lwp (see PCAGENT).
1199 1332
1200 1333 When applied to the process control file, a representative lwp is chosen
1201 1334 for the operation as described for /proc/pid/status. The operation fails
1202 1335 with EBUSY if the representative lwp is not stopped on an event of
1203 1336 interest or has not been directed to stop or if the agent lwp exists. If
1204 1337 PRSTEP or PRSTOP was requested, the representative lwp is made runnable
1205 1338 and its outstanding directed-stop request is cleared; otherwise all
1206 1339 outstanding directed-stop requests are cleared and, if it was stopped on
1207 1340 an event of interest, the representative lwp is marked PR_REQUESTED. If,
1208 1341 as a consequence, all lwps are in the PR_REQUESTED or PR_SUSPENDED stop
1209 1342 state, all lwps showing PR_REQUESTED are made runnable.
1210 1343
1211 1344 PCSTRACE
1212 1345 Define a set of signals to be traced in the process. The receipt of one
1213 1346 of these signals by an lwp causes the lwp to stop. The set of signals is
1214 1347 defined using an operand sigset_t contained in the control message.
1215 1348 Receipt of SIGKILL cannot be traced; if specified, it is silently
1216 1349 ignored.
1217 1350
1218 1351 If a signal that is included in an lwp's held signal set (the signal
1219 1352 mask) is sent to the lwp, the signal is not received and does not cause a
1220 1353 stop until it is removed from the held signal set, either by the lwp
1221 1354 itself or by setting the held signal set with PCSHOLD.
1222 1355
1223 1356 PCCSIG
1224 1357 The current signal, if any, is cleared from the specific or
1225 1358 representative lwp.
1226 1359
1227 1360 PCSSIG
1228 1361 The current signal and its associated signal information for the specific
1229 1362 or representative lwp are set according to the contents of the operand
1230 1363 siginfo structure (see <sys/siginfo.h>). If the specified signal number
1231 1364 is zero, the current signal is cleared. The semantics of this operation
1232 1365 are different from those of kill(2) in that the signal is delivered to
1233 1366 the lwp immediately after execution is resumed (even if it is being
1234 1367 blocked) and an additional PR_SIGNALLED stop does not intervene even if
1235 1368 the signal is traced. Setting the current signal to SIGKILL terminates
1236 1369 the process immediately.
1237 1370
1238 1371 PCKILL
1239 1372 If applied to the process control file, a signal is sent to the process
1240 1373 with semantics identical to those of kill(2) If applied to an lwp control
1241 1374 file, a directed signal is sent to the specific lwp. The signal is named
1242 1375 in a long operand contained in the message. Sending SIGKILL terminates
1243 1376 the process immediately.
1244 1377
1245 1378 PCUNKILL
1246 1379 A signal is deleted, that is, it is removed from the set of pending
1247 1380 signals. If applied to the process control file, the signal is deleted
1248 1381 from the process's pending signals. If applied to an lwp control file,
1249 1382 the signal is deleted from the lwp's pending signals. The current signal
1250 1383 (if any) is unaffected. The signal is named in a long operand in the
1251 1384 control message. It is an error (EINVAL) to attempt to delete SIGKILL.
1252 1385
1253 1386 PCSHOLD
1254 1387 Set the set of held signals for the specific or representative lwp
1255 1388 (signals whose delivery will be blocked if sent to the lwp). The set of
1256 1389 signals is specified with a sigset_t operand. SIGKILL and SIGSTOP cannot
1257 1390 be held; if specified, they are silently ignored.
1258 1391
1259 1392 PCSFAULT
1260 1393 Define a set of hardware faults to be traced in the process. On
1261 1394 incurring one of these faults, an lwp stops. The set is defined via the
1262 1395 operand fltset_t structure. Fault names are defined in <sys/fault.h> and
1263 1396 include the following. Some of these may not occur on all processors;
1264 1397 there may be processor-specific faults in addition to these.
1265 1398
1266 1399 FLTILL illegal instruction
1267 1400
1268 1401 FLTPRIV privileged instruction
1269 1402
1270 1403 FLTBPT breakpoint trap
1271 1404
1272 1405 FLTTRACE trace trap (single-step)
1273 1406
1274 1407 FLTWATCH watchpoint trap
1275 1408
1276 1409 FLTACCESS memory access fault (bus error)
1277 1410
1278 1411 FLTBOUNDS memory bounds violation
1279 1412
1280 1413 FLTIOVF integer overflow
1281 1414
1282 1415 FLTIZDIV integer zero divide
1283 1416
1284 1417 FLTFPE floating-point exception
1285 1418
1286 1419 FLTSTACK unrecoverable stack fault
1287 1420
1288 1421 FLTPAGE recoverable page fault
1289 1422
1290 1423 When not traced, a fault normally results in the posting of a signal to
1291 1424 the lwp that incurred the fault. If an lwp stops on a fault, the signal
1292 1425 is posted to the lwp when execution is resumed unless the fault is
1293 1426 cleared by PCCFAULT or by the PRCFAULT option of PCRUN. FLTPAGE is an
1294 1427 exception; no signal is posted. The pr_info field in the lwpstatus
1295 1428 structure identifies the signal to be sent and contains machine-specific
1296 1429 information about the fault.
1297 1430
1298 1431 PCCFAULT
1299 1432 The current fault, if any, is cleared; the associated signal will not be
1300 1433 sent to the specific or representative lwp.
1301 1434
1302 1435 PCSENTRY PCSEXIT
1303 1436 These control operations instruct the process's lwps to stop on entry to
1304 1437 or exit from specified system calls. The set of system calls to be
1305 1438 traced is defined via an operand sysset_t structure.
1306 1439
1307 1440 When entry to a system call is being traced, an lwp stops after having
1308 1441 begun the call to the system but before the system call arguments have
1309 1442 been fetched from the lwp. When exit from a system call is being traced,
1310 1443 an lwp stops on completion of the system call just prior to checking for
1311 1444 signals and returning to user level. At this point, all return values
1312 1445 have been stored into the lwp's registers.
1313 1446
1314 1447 If an lwp is stopped on entry to a system call (PR_SYSENTRY) or when
1315 1448 sleeping in an interruptible system call (PR_ASLEEP is set), it may be
1316 1449 instructed to go directly to system call exit by specifying the PRSABORT
1317 1450 flag in a PCRUN control message. Unless exit from the system call is
1318 1451 being traced, the lwp returns to user level showing EINTR.
1319 1452
1320 1453 PCWATCH
1321 1454 Set or clear a watched area in the controlled process from a prwatch
1322 1455 structure operand:
1323 1456
1324 1457 typedef struct prwatch {
1325 1458 uintptr_t pr_vaddr; /* virtual address of watched area */
1326 1459 size_t pr_size; /* size of watched area in bytes */
1327 1460 int pr_wflags; /* watch type flags */
1328 1461 } prwatch_t;
1329 1462
1330 1463 pr_vaddr specifies the virtual address of an area of memory to be watched
1331 1464 in the controlled process. pr_size specifies the size of the area, in
1332 1465 bytes. pr_wflags specifies the type of memory access to be monitored as
1333 1466 a bit-mask of the following flags:
1334 1467
1335 1468 WA_READ read access
1336 1469
1337 1470 WA_WRITE write access
1338 1471
1339 1472 WA_EXEC execution access
1340 1473
1341 1474 WA_TRAPAFTER trap after the instruction completes
1342 1475
1343 1476 If pr_wflags is non-empty, a watched area is established for the virtual
1344 1477 address range specified by pr_vaddr and pr_size. If pr_wflags is empty,
1345 1478 any previously-established watched area starting at the specified virtual
1346 1479 address is cleared; pr_size is ignored.
1347 1480
1348 1481 A watchpoint is triggered when an lwp in the traced process makes a
1349 1482 memory reference that covers at least one byte of a watched area and the
1350 1483 memory reference is as specified in pr_wflags. When an lwp triggers a
1351 1484 watchpoint, it incurs a watchpoint trap. If FLTWATCH is being traced,
1352 1485 the lwp stops; otherwise, it is sent a SIGTRAP signal; if SIGTRAP is
1353 1486 being traced and is not blocked, the lwp stops.
1354 1487
1355 1488 The watchpoint trap occurs before the instruction completes unless
1356 1489 WA_TRAPAFTER was specified, in which case it occurs after the instruction
1357 1490 completes. If it occurs before completion, the memory is not modified.
1358 1491 If it occurs after completion, the memory is modified (if the access is a
1359 1492 write access).
1360 1493
1361 1494 Physical i/o is an exception for watchpoint traps. In this instance,
1362 1495 there is no guarantee that memory before the watched area has already
1363 1496 been modified (or in the case of WA_TRAPAFTER, that the memory following
1364 1497 the watched area has not been modified) when the watchpoint trap occurs
1365 1498 and the lwp stops.
1366 1499
1367 1500 pr_info in the lwpstatus structure contains information pertinent to the
1368 1501 watchpoint trap. In particular, the si_addr field contains the virtual
1369 1502 address of the memory reference that triggered the watchpoint, and the
1370 1503 si_code field contains one of TRAP_RWATCH, TRAP_WWATCH, or TRAP_XWATCH,
1371 1504 indicating read, write, or execute access, respectively. The
1372 1505 si_trapafter field is zero unless WA_TRAPAFTER is in effect for this
1373 1506 watched area; non-zero indicates that the current instruction is not the
1374 1507 instruction that incurred the watchpoint trap. The si_pc field contains
1375 1508 the virtual address of the instruction that incurred the trap.
1376 1509
1377 1510 A watchpoint trap may be triggered while executing a system call that
1378 1511 makes reference to the traced process's memory. The lwp that is
1379 1512 executing the system call incurs the watchpoint trap while still in the
1380 1513 system call. If it stops as a result, the lwpstatus structure contains
1381 1514 the system call number and its arguments. If the lwp does not stop, or
1382 1515 if it is set running again without clearing the signal or fault, the
1383 1516 system call fails with EFAULT. If WA_TRAPAFTER was specified, the memory
1384 1517 reference will have completed and the memory will have been modified (if
1385 1518 the access was a write access) when the watchpoint trap occurs.
1386 1519
1387 1520 If more than one of WA_READ, WA_WRITE, and WA_EXEC is specified for a
1388 1521 watched area, and a single instruction incurs more than one of the
1389 1522 specified types, only one is reported when the watchpoint trap occurs.
1390 1523 The precedence is WA_EXEC, WA_READ, WA_WRITE (WA_EXEC and WA_READ take
1391 1524 precedence over WA_WRITE), unless WA_TRAPAFTER was specified, in which
1392 1525 case it is WA_WRITE, WA_READ, WA_EXEC (WA_WRITE takes precedence).
1393 1526
1394 1527 PCWATCH fails with EINVAL if an attempt is made to specify overlapping
1395 1528 watched areas or if pr_wflags contains flags other than those specified
1396 1529 above. It fails with ENOMEM if an attempt is made to establish more
1397 1530 watched areas than the system can support (the system can support
1398 1531 thousands).
1399 1532
1400 1533 The child of a vfork(2) borrows the parent's address space. When a
1401 1534 vfork(2) is executed by a traced process, all watched areas established
1402 1535 for the parent are suspended until the child terminates or performs an
1403 1536 exec(2). Any watched areas established independently in the child are
1404 1537 cancelled when the parent resumes after the child's termination or
1405 1538 exec(2). PCWATCH fails with EBUSY if applied to the parent of a vfork(2)
1406 1539 before the child has terminated or performed an exec(2). The PR_VFORKP
1407 1540 flag is set in the pstatus structure for such a parent process.
1408 1541
1409 1542 Certain accesses of the traced process's address space by the operating
1410 1543 system are immune to watchpoints. The initial construction of a signal
1411 1544 stack frame when a signal is delivered to an lwp will not trigger a
1412 1545 watchpoint trap even if the new frame covers watched areas of the stack.
1413 1546 Once the signal handler is entered, watchpoint traps occur normally. On
1414 1547 SPARC based machines, register window overflow and underflow will not
1415 1548 trigger watchpoint traps, even if the register window save areas cover
1416 1549 watched areas of the stack.
1417 1550
1418 1551 Watched areas are not inherited by child processes, even if the traced
1419 1552 process's inherit-on-fork mode, PR_FORK, is set (see PCSET, below). All
1420 1553 watched areas are cancelled when the traced process performs a successful
1421 1554 exec(2).
1422 1555
1423 1556 PCSET PCUNSET
1424 1557 PCSET sets one or more modes of operation for the traced process.
1425 1558 PCUNSET unsets these modes. The modes to be set or unset are specified
1426 1559 by flags in an operand long in the control message:
1427 1560
1428 1561 PR_FORK (inherit-on-fork): When set, the process's tracing flags
1429 1562 and its inherit-on-fork mode are inherited by the child of
1430 1563 a fork(2), fork1(2), or vfork(2). When unset, child
1431 1564 processes start with all tracing flags cleared.
1432 1565
1433 1566 PR_RLC (run-on-last-close): When set and the last writable /proc
1434 1567 file descriptor referring to the traced process or any of
1435 1568 its lwps is closed, all of the process's tracing flags and
1436 1569 watched areas are cleared, any outstanding stop directives
1437 1570 are canceled, and if any lwps are stopped on events of
1438 1571 interest, they are set running as though PCRUN had been
1439 1572 applied to them. When unset, the process's tracing flags
1440 1573 and watched areas are retained and lwps are not set
1441 1574 running on last close.
1442 1575
1443 1576 PR_KLC (kill-on-last-close): When set and the last writable /proc
1444 1577 file descriptor referring to the traced process or any of
1445 1578 its lwps is closed, the process is terminated with
1446 1579 SIGKILL.
1447 1580
1448 1581 PR_ASYNC (asynchronous-stop): When set, a stop on an event of
1449 1582 interest by one lwp does not directly affect any other lwp
1450 1583 in the process. When unset and an lwp stops on an event
1451 1584 of interest other than PR_REQUESTED, all other lwps in the
1452 1585 process are directed to stop.
1453 1586
1454 1587 PR_MSACCT (microstate accounting): Microstate accounting is now
1455 1588 continuously enabled. This flag is deprecated and no
1456 1589 longer has any effect upon microstate accounting.
1457 1590 Applications may toggle this flag; however, microstate
1458 1591 accounting will remain enabled regardless.
1459 1592
1460 1593 PR_MSFORK (inherit microstate accounting): All processes now inherit
1461 1594 microstate accounting, as it is continuously enabled.
1462 1595 This flag has been deprecated and its use no longer has
1463 1596 any effect upon the behavior of microstate accounting.
1464 1597
1465 1598 PR_BPTADJ (breakpoint trap pc adjustment): On x86-based machines, a
1466 1599 breakpoint trap leaves the program counter (the EIP)
1467 1600 referring to the breakpointed instruction plus one byte.
1468 1601 When PR_BPTADJ is set, the system will adjust the program
1469 1602 counter back to the location of the breakpointed
1470 1603 instruction when the lwp stops on a breakpoint. This flag
1471 1604 has no effect on SPARC based machines, where breakpoint
1472 1605 traps leave the program counter referring to the
1473 1606 breakpointed instruction.
1474 1607
1475 1608 PR_PTRACE (ptrace-compatibility): When set, a stop on an event of
1476 1609 interest by the traced process is reported to the parent
1477 1610 of the traced process by wait(3C), SIGTRAP is sent to the
1478 1611 traced process when it executes a successful exec(2),
1479 1612 setuid/setgid flags are not honored for execs performed by
1480 1613 the traced process, any exec of an object file that the
1481 1614 traced process cannot read fails, and the process dies
1482 1615 when its parent dies. This mode is deprecated; it is
1483 1616 provided only to allow ptrace(3C) to be implemented as a
1484 1617 library function using /proc.
1485 1618
1486 1619 It is an error (EINVAL) to specify flags other than those described above
1487 1620 or to apply these operations to a system process. The current modes are
1488 1621 reported in the pr_flags field of /proc/pid/status and
1489 1622 /proc/pid/lwp/lwp/lwpstatus.
1490 1623
1491 1624 PCSREG
1492 1625 Set the general registers for the specific or representative lwp
1493 1626 according to the operand prgregset_t structure.
1494 1627
1495 1628 On SPARC based systems, only the condition-code bits of the processor-
1496 1629 status register (R_PSR) of SPARC V8 (32-bit) processes can be modified by
1497 1630 PCSREG. Other privileged registers cannot be modified at all.
1498 1631
1499 1632 On x86-based systems, only certain bits of the flags register (EFL) can
1500 1633 be modified by PCSREG: these include the condition codes, direction-bit,
1501 1634 and overflow-bit.
1502 1635
1503 1636 PCSREG fails with EBUSY if the lwp is not stopped on an event of
1504 1637 interest.
1505 1638
1506 1639 PCSVADDR
1507 1640 Set the address at which execution will resume for the specific or
1508 1641 representative lwp from the operand long. On SPARC based systems, both
1509 1642 %pc and %npc are set, with %npc set to the instruction following the
1510 1643 virtual address. On x86-based systems, only %eip is set. PCSVADDR fails
1511 1644 with EBUSY if the lwp is not stopped on an event of interest.
1512 1645
1513 1646 PCSFPREG
1514 1647 Set the floating-point registers for the specific or representative lwp
1515 1648 according to the operand prfpregset_t structure. An error (EINVAL) is
1516 1649 returned if the system does not support floating-point operations (no
1517 1650 floating-point hardware and the system does not emulate floating-point
1518 1651 machine instructions). PCSFPREG fails with EBUSY if the lwp is not
1519 1652 stopped on an event of interest.
1520 1653
1521 1654 PCSXREG
1522 1655 Set the extra state registers for the specific or representative lwp
1523 1656 according to the architecture-dependent operand prxregset_t structure.
1524 1657 An error (EINVAL) is returned if the system does not support extra state
1525 1658 registers. PCSXREG fails with EBUSY if the lwp is not stopped on an
1526 1659 event of interest.
1527 1660
1528 1661 PCSASRS
1529 1662 Set the ancillary state registers for the specific or representative lwp
1530 1663 according to the SPARC V9 platform-dependent operand asrset_t structure.
1531 1664 An error (EINVAL) is returned if either the target process or the
1532 1665 controlling process is not a 64-bit SPARC V9 process. Most of the
1533 1666 ancillary state registers are privileged registers that cannot be
1534 1667 modified. Only those that can be modified are set; all others are
1535 1668 silently ignored. PCSASRS fails with EBUSY if the lwp is not stopped on
1536 1669 an event of interest.
1537 1670
1538 1671 PCAGENT
1539 1672 Create an agent lwp in the controlled process with register values from
1540 1673 the operand prgregset_t structure (see PCSREG, above). The agent lwp is
1541 1674 created in the stopped state showing PR_REQUESTED and with its held
1542 1675 signal set (the signal mask) having all signals except SIGKILL and
1543 1676 SIGSTOP blocked.
1544 1677
1545 1678 The PCAGENT operation fails with EBUSY unless the process is fully
1546 1679 stopped via /proc, that is, unless all of the lwps in the process are
1547 1680 stopped either on events of interest or on PR_SUSPENDED, or are stopped
1548 1681 on PR_JOBCONTROL and have been directed to stop via PCDSTOP. It fails
1549 1682 with EBUSY if an agent lwp already exists. It fails with ENOMEM if
1550 1683 system resources for creating new lwps have been exhausted.
1551 1684
1552 1685 Any PCRUN operation applied to the process control file or to the control
1553 1686 file of an lwp other than the agent lwp fails with EBUSY as long as the
1554 1687 agent lwp exists. The agent lwp must be caused to terminate by executing
1555 1688 the SYS_lwp_exit system call trap before the process can be restarted.
1556 1689
1557 1690 Once the agent lwp is created, its lwp-ID can be found by reading the
1558 1691 process status file. To facilitate opening the agent lwp's control and
1559 1692 status files, the directory name /proc/pid/lwp/agent is accepted for
1560 1693 lookup operations as an invisible alias for /proc/pid/lwp/lwpid, lwpid
1561 1694 being the lwp-ID of the agent lwp (invisible in the sense that the name
1562 1695 "agent" does not appear in a directory listing of /proc/pid/lwp obtained
1563 1696 from ls(1), getdents(2), or readdir(3C).
1564 1697
1565 1698 The purpose of the agent lwp is to perform operations in the controlled
1566 1699 process on behalf of the controlling process: to gather information not
1567 1700 directly available via /proc files, or in general to make the process
1568 1701 change state in ways not directly available via /proc control operations.
1569 1702 To make use of an agent lwp, the controlling process must be capable of
1570 1703 making it execute system calls (specifically, the SYS_lwp_exit system
1571 1704 call trap). The register values given to the agent lwp on creation are
1572 1705 typically the registers of the representative lwp, so that the agent lwp
1573 1706 can use its stack.
1574 1707
1575 1708 If the controlling process neglects to force the agent lwp to execute the
1576 1709 SYS_lwp_exit system call (due to either logic error or fatal failure on
1577 1710 the part of the controlling process), the agent lwp will remain in the
1578 1711 target process. For purposes of being able to debug these otherwise
1579 1712 rogue agents, information as to the creator of the agent lwp is reflected
1580 1713 in that lwp's spymaster file in /proc. Should the target process
1581 1714 generate a core dump with the agent lwp in place, this information will
1582 1715 be available via the NT_SPYMASTER note in the core file (see core(4)).
1583 1716
1584 1717 The agent lwp is not allowed to execute any variation of the SYS_fork or
1585 1718 SYS_exec system call traps. Attempts to do so yield ENOTSUP to the agent
1586 1719 lwp.
1587 1720
1588 1721 Symbolic constants for system call trap numbers like SYS_lwp_exit and
1589 1722 SYS_lwp_create can be found in the header file <sys/syscall.h>.
1590 1723
1591 1724 PCREAD PCWRITE
1592 1725 Read or write the target process's address space via a priovec structure
1593 1726 operand:
1594 1727
1595 1728 typedef struct priovec {
1596 1729 void *pio_base; /* buffer in controlling process */
1597 1730 size_t pio_len; /* size of read/write request in bytes */
1598 1731 off_t pio_offset; /* virtual address in target process */
1599 1732 } priovec_t;
1600 1733
1601 1734 These operations have the same effect as pread(2) and pwrite(2),
1602 1735 respectively, of the target process's address space file. The difference
1603 1736 is that more than one PCREAD or PCWRITE control operation can be written
1604 1737 to the control file at once, and they can be interspersed with other
1605 1738 control operations in a single write to the control file. This is
1606 1739 useful, for example, when planting many breakpoint instructions in the
1607 1740 process's address space, or when stepping over a breakpointed
1608 1741 instruction. Unlike pread(2) and pwrite(2), no provision is made for
1609 1742 partial reads or writes; if the operation cannot be performed completely,
1610 1743 it fails with EIO.
1611 1744
1612 1745 PCNICE
1613 1746 The traced process's nice(2) value is incremented by the amount in the
1614 1747 operand long. Only a process with the {PRIV_PROC_PRIOCNTL} privilege
1615 1748 asserted in its effective set can better a process's priority in this
1616 1749 way, but any user may lower the priority. This operation is not
1617 1750 meaningful for all scheduling classes.
1618 1751
1619 1752 PCSCRED
1620 1753 Set the target process credentials to the values contained in the
1621 1754 prcred_t structure operand (see /proc/pid/cred). The effective, real,
1622 1755 and saved user-IDs and group-IDs of the target process are set. The
1623 1756 target process's supplementary groups are not changed; the pr_ngroups and
1624 1757 pr_groups members of the structure operand are ignored. Only the
1625 1758 privileged processes can perform this operation; for all others it fails
1626 1759 with EPERM.
1627 1760
1628 1761 PCSCREDX
1629 1762 Operates like PCSCRED but also sets the supplementary groups; the length
1630 1763 of the data written with this control operation should be "sizeof
1631 1764 (prcred_t) + sizeof (gid_t) * (#groups - 1)".
1632 1765
1633 1766 PCSPRIV
1634 1767 Set the target process privilege to the values contained in the prpriv_t
1635 1768 operand (see /proc/pid/priv). The effective, permitted, inheritable, and
1636 1769 limit sets are all changed. Privilege flags can also be set. The
1637 1770 process is made privilege aware unless it can relinquish privilege
1638 1771 awareness. See privileges(5).
1639 1772
1640 1773 The limit set of the target process cannot be grown. The other privilege
1641 1774 sets must be subsets of the intersection of the effective set of the
1642 1775 calling process with the new limit set of the target process or subsets
1643 1776 of the original values of the sets in the target process.
1644 1777
1645 1778 If any of the above restrictions are not met, EPERM is returned. If the
1646 1779 structure written is improperly formatted, EINVAL is returned.
1647 1780
1648 1781 PROGRAMMING NOTES
1649 1782 For security reasons, except for the psinfo, usage, lpsinfo, lusage,
1650 1783 lwpsinfo, and lwpusage files, which are world-readable, and except for
1651 1784 privileged processes, an open of a /proc file fails unless both the user-
1652 1785 ID and group-ID of the caller match those of the traced process and the
1653 1786 process's object file is readable by the caller. The effective set of
1654 1787 the caller is a superset of both the inheritable and the permitted set of
1655 1788 the target process. The limit set of the caller is a superset of the
1656 1789 limit set of the target process. Except for the world-readable files
1657 1790 just mentioned, files corresponding to setuid and setgid processes can be
1658 1791 opened only by the appropriately privileged process.
1659 1792
1660 1793 A process that is missing the basic privilege {PRIV_PROC_INFO} cannot see
1661 1794 any processes under /proc that it cannot send a signal to.
1662 1795
1663 1796 A process that has {PRIV_PROC_OWNER} asserted in its effective set can
1664 1797 open any file for reading. To manipulate or control a process, the
1665 1798 controlling process must have at least as many privileges in its
1666 1799 effective set as the target process has in its effective, inheritable,
1667 1800 and permitted sets. The limit set of the controlling process must be a
1668 1801 superset of the limit set of the target process. Additional restrictions
1669 1802 apply if any of the uids of the target process are 0. See privileges(5).
1670 1803
1671 1804 Even if held by a privileged process, an open process or lwp file
1672 1805 descriptor (other than file descriptors for the world-readable files)
1673 1806 becomes invalid if the traced process performs an exec(2) of a
1674 1807 setuid/setgid object file or an object file that the traced process
1675 1808 cannot read. Any operation performed on an invalid file descriptor,
1676 1809 except close(2), fails with EAGAIN. In this situation, if any tracing
1677 1810 flags are set and the process or any lwp file descriptor is open for
1678 1811 writing, the process will have been directed to stop and its run-on-last-
1679 1812 close flag will have been set (see PCSET). This enables a controlling
1680 1813 process (if it has permission) to reopen the /proc files to get new valid
1681 1814 file descriptors, close the invalid file descriptors, unset the run-on-
1682 1815 last-close flag (if desired), and proceed. Just closing the invalid file
1683 1816 descriptors causes the traced process to resume execution with all
1684 1817 tracing flags cleared. Any process not currently open for writing via
1685 1818 /proc, but that has left-over tracing flags from a previous open, and
1686 1819 that executes a setuid/setgid or unreadable object file, will not be
1687 1820 stopped but will have all its tracing flags cleared.
1688 1821
1689 1822 To wait for one or more of a set of processes or lwps to stop or
1690 1823 terminate, /proc file descriptors (other than those obtained by opening
1691 1824 the cwd or root directories or by opening files in the fd or object
1692 1825 directories) can be used in a poll(2) system call. When requested and
1693 1826 returned, either of the polling events POLLPRI or POLLWRNORM indicates
1694 1827 that the process or lwp stopped on an event of interest. Although they
1695 1828 cannot be requested, the polling events POLLHUP, POLLERR, and POLLNVAL
1696 1829 may be returned. POLLHUP indicates that the process or lwp has
1697 1830 terminated. POLLERR indicates that the file descriptor has become
1698 1831 invalid. POLLNVAL is returned immediately if POLLPRI or POLLWRNORM is
1699 1832 requested on a file descriptor referring to a system process (see
1700 1833 PCSTOP). The requested events may be empty to wait simply for
1701 1834 termination.
1702 1835
1703 1836 FILES
1704 1837 /proc directory (list of processes)
1705 1838 /proc/pid
1706 1839 specific process directory
1707 1840 /proc/self
1708 1841 alias for a process's own directory
1709 1842 /proc/pid/as
1710 1843 address space file
1711 1844 /proc/pid/ctl
1712 1845 process control file
1713 1846 /proc/pid/status
1714 1847 process status
1715 1848 /proc/pid/lstatus
1716 1849 array of lwp status structs
1717 1850 /proc/pid/psinfo
1718 1851 process ps(1) info
1719 1852 /proc/pid/lpsinfo
1720 1853 array of lwp ps(1) info structs
1721 1854 /proc/pid/map
1722 1855 address space map
1723 1856 /proc/pid/xmap
1724 1857 extended address space map
1725 1858 /proc/pid/rmap
1726 1859 reserved address map
1727 1860 /proc/pid/cred
1728 1861 process credentials
1729 1862 /proc/pid/priv
1730 1863 process privileges
1731 1864 /proc/pid/sigact
1732 1865 process signal actions
1733 1866 /proc/pid/auxv
1734 1867 process aux vector
1735 1868 /proc/pid/ldt
1736 1869 process LDT (x86 only)
1737 1870 /proc/pid/usage
1738 1871 process usage
1739 1872 /proc/pid/lusage
1740 1873 array of lwp usage structs
1741 1874 /proc/pid/path
1742 1875 symbolic links to process open files
1743 1876 /proc/pid/pagedata
1744 1877 process page data
1745 1878 /proc/pid/watch
1746 1879 active watchpoints
1747 1880 /proc/pid/cwd
1748 1881 alias for the current working directory
1749 1882 /proc/pid/root
1750 1883 alias for the root directory
1751 1884 /proc/pid/fd
1752 1885 directory (list of open files)
1753 1886 /proc/pid/fd/*
1754 1887 aliases for process's open files
1755 1888 /proc/pid/object
1756 1889 directory (list of mapped files)
1757 1890 /proc/pid/object/a.out
1758 1891 alias for process's executable file
1759 1892 /proc/pid/object/*
1760 1893 aliases for other mapped files
1761 1894 /proc/pid/lwp
1762 1895 directory (list of lwps)
1763 1896 /proc/pid/lwp/lwpid
1764 1897 specific lwp directory
1765 1898 /proc/pid/lwp/agent
1766 1899 alias for the agent lwp directory
1767 1900 /proc/pid/lwp/lwpid/lwpctl
1768 1901 lwp control file
1769 1902 /proc/pid/lwp/lwpid/lwpstatus
1770 1903 lwp status
1771 1904 /proc/pid/lwp/lwpid/lwpsinfo
1772 1905 lwp ps(1) info
1773 1906 /proc/pid/lwp/lwpid/lwpusage
1774 1907 lwp usage
1775 1908 /proc/pid/lwp/lwpid/gwindows
1776 1909 register windows (SPARC only)
1777 1910 /proc/pid/lwp/lwpid/xregs
1778 1911 extra state registers
1779 1912 /proc/pid/lwp/lwpid/asrs
1780 1913 ancillary state registers (SPARC V9 only)
1781 1914 /proc/pid/lwp/lwpid/spymaster
1782 1915 For an agent LWP, the controlling process
1783 1916
1784 1917 DIAGNOSTICS
1785 1918 Errors that can occur in addition to the errors normally associated with
1786 1919 file system access:
1787 1920
1788 1921 E2BIG Data to be returned in a read(2) of the page data file
1789 1922 exceeds the size of the read buffer provided by the
1790 1923 caller.
1791 1924
1792 1925 EACCES An attempt was made to examine a process that ran under a
1793 1926 different uid than the controlling process and
1794 1927 {PRIV_PROC_OWNER} was not asserted in the effective set.
1795 1928
1796 1929 EAGAIN The traced process has performed an exec(2) of a
1797 1930 setuid/setgid object file or of an object file that it
1798 1931 cannot read; all further operations on the process or lwp
1799 1932 file descriptor (except close(2)) elicit this error.
1800 1933
1801 1934 EBUSY PCSTOP, PCDSTOP, PCWSTOP, or PCTWSTOP was applied to a
1802 1935 system process; an exclusive open(2) was attempted on a
1803 1936 /proc file for a process already open for writing; PCRUN,
1804 1937 PCSREG, PCSVADDR, PCSFPREG, or PCSXREG was applied to a
1805 1938 process or lwp not stopped on an event of interest; an
1806 1939 attempt was made to mount /proc when it was already
1807 1940 mounted; PCAGENT was applied to a process that was not
1808 1941 fully stopped or that already had an agent lwp.
1809 1942
1810 1943 EINVAL In general, this means that some invalid argument was
1811 1944 supplied to a system call. A non-exhaustive list of
1812 1945 conditions eliciting this error includes: a control
1813 1946 message operation code is undefined; an out-of-range
1814 1947 signal number was specified with PCSSIG, PCKILL, or
1815 1948 PCUNKILL; SIGKILL was specified with PCUNKILL; PCSFPREG
1816 1949 was applied on a system that does not support floating-
1817 1950 point operations; PCSXREG was applied on a system that
1818 1951 does not support extra state registers.
1819 1952
1820 1953 EINTR A signal was received by the controlling process while
1821 1954 waiting for the traced process or lwp to stop via PCSTOP,
1822 1955 PCWSTOP, or PCTWSTOP.
1823 1956
1824 1957 EIO A write(2) was attempted at an illegal address in the
1825 1958 traced process.
1826 1959
1827 1960 ENOENT The traced process or lwp has terminated after being
1828 1961 opened. The basic privilege {PRIV_PROC_INFO} is not
1829 1962 asserted in the effective set of the calling process and
1830 1963 the calling process cannot send a signal to the target
1831 1964 process.
1832 1965
1833 1966 ENOMEM The system-imposed limit on the number of page data file
1834 1967 descriptors was reached on an open of /proc/pid/pagedata;
1835 1968 an attempt was made with PCWATCH to establish more watched
1836 1969 areas than the system can support; the PCAGENT operation
1837 1970 was issued when the system was out of resources for
1838 1971 creating lwps.
1839 1972
1840 1973 ENOSYS An attempt was made to perform an unsupported operation
1841 1974 (such as creat(2), link(2), or unlink(2)) on an entry in
1842 1975 /proc.
1843 1976
1844 1977 EOVERFLOW A 32-bit controlling process attempted to read or write
1845 1978 the as file or attempted to read the map, rmap, or
1846 1979 pagedata file of a 64-bit target process. A 32-bit
1847 1980 controlling process attempted to apply one of the control
1848 1981 operations PCSREG, PCSXREG, PCSVADDR, PCWATCH, PCAGENT,
1849 1982 PCREAD, PCWRITE to a 64-bit target process.
1850 1983
1851 1984 EPERM The process that issued the PCSCRED or PCSCREDX operation
1852 1985 did not have the {PRIV_PROC_SETID} privilege asserted in
1853 1986 its effective set, or the process that issued the PCNICE
1854 1987 operation did not have the {PRIV_PROC_PRIOCNTL} in its
1855 1988 effective set.
1856 1989
1857 1990 An attempt was made to control a process of which the E,
1858 1991 P, and I privilege sets were not a subset of the effective
1859 1992 set of the controlling process or the limit set of the
1860 1993 controlling process is not a superset of limit set of the
1861 1994 controlled process.
1862 1995
1863 1996 Any of the uids of the target process are 0 or an attempt
1864 1997 was made to change any of the uids to 0 using PCSCRED and
1865 1998 the security policy imposed additional restrictions. See
1866 1999 privileges(5).
1867 2000
1868 2001 SEE ALSO
1869 2002 ls(1), ps(1), chroot(1M), alarm(2), brk(2), chdir(2), chroot(2),
1870 2003 close(2), creat(2), dup(2), exec(2), fcntl(2), fork(2), fork1(2),
1871 2004 fstat(2), getdents(2), getustack(2), kill(2), lseek(2), mmap(2), nice(2),
1872 2005 open(2), poll(2), pread(2), pwrite(2), read(2), readlink(2), readv(2),
1873 2006 shmget(2), sigaction(2), sigaltstack(2), vfork(2), write(2), writev(2),
1874 2007 _stack_grow(3C), pthread_create(3C), pthread_join(3C), ptrace(3C),
1875 2008 readdir(3C), thr_create(3C), thr_join(3C), wait(3C), siginfo.h(3HEAD),
1876 2009 signal.h(3HEAD), types32.h(3HEAD), ucontext.h(3HEAD), contract(4),
1877 2010 core(4), process(4), lfcompile(5), privileges(5), security-flags(5)
1878 2011
1879 2012 NOTES
1880 2013 Descriptions of structures in this document include only interesting
1881 2014 structure elements, not filler and padding fields, and may show elements
1882 2015 out of order for descriptive clarity. The actual structure definitions
1883 2016 are contained in <procfs.h>.
1884 2017
1885 2018 BUGS
1886 2019 Because the old ioctl(2)-based version of /proc is currently supported
1887 2020 for binary compatibility with old applications, the top-level directory
1888 2021 for a process, /proc/pid, is not world-readable, but it is world-
↓ open down ↓ |
1010 lines elided |
↑ open up ↑ |
1889 2022 searchable. Thus, anyone can open /proc/pid/psinfo even though ls(1)
1890 2023 applied to /proc/pid will fail for anyone but the owner or an
1891 2024 appropriately privileged process. Support for the old ioctl(2)-based
1892 2025 version of /proc will be dropped in a future release, at which time the
1893 2026 top-level directory for a process will be made world-readable.
1894 2027
1895 2028 On SPARC based machines, the types gregset_t and fpregset_t defined in
1896 2029 <sys/regset.h> are similar to but not the same as the types prgregset_t
1897 2030 and prfpregset_t defined in <procfs.h>.
1898 2031
1899 -illumos January 11, 2019 illumos
2032 +illumos December 3, 2019 illumos
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX