]> git.lizzy.rs Git - plan9front.git/blob - sys/man/3/proc
correct reference to srv(3) in shr(3)
[plan9front.git] / sys / man / 3 / proc
1 .TH PROC 3
2 .SH NAME
3 proc \- running processes
4 .SH SYNOPSIS
5 .nf
6 .B bind #p /proc
7 .sp 0.3v
8 .B /proc/trace
9 .BI /proc/ n /args
10 .BI /proc/ n /ctl
11 .BI /proc/ n /fd
12 .BI /proc/ n /fpregs
13 .BI /proc/ n /kregs
14 .BI /proc/ n /mem
15 .BI /proc/ n /note
16 .BI /proc/ n /noteid
17 .BI /proc/ n /notepg
18 .BI /proc/ n /ns
19 .BI /proc/ n /proc
20 .BI /proc/ n /profile
21 .BI /proc/ n /regs
22 .BI /proc/ n /segment
23 .BI /proc/ n /status
24 .BI /proc/ n /text
25 .BI /proc/ n /wait
26 \&...
27 .fi
28 .SH DESCRIPTION
29 The
30 .I proc
31 device serves a two-level directory structure.
32 The first level contains the
33 .B trace
34 file (see below) and numbered directories
35 corresponding to pids of live processes;
36 each such directory contains a set of files
37 representing the corresponding process.
38 .PP
39 The
40 .B mem
41 file contains the current memory image of the process.
42 A read or write at offset
43 .IR o ,
44 which must be a valid virtual address,
45 accesses bytes from address
46 .IR o
47 up to the end of the memory segment containing
48 .IR o .
49 Kernel virtual memory, including the kernel stack for the process and
50 saved user registers (whose addresses are machine-dependent),
51 can be accessed through
52 .BR mem .
53 Writes are permitted only while the process is in the
54 .B Stopped
55 state and only to user addresses or registers.
56 .PP
57 The read-only
58 .B proc
59 file contains the kernel per-process
60 structure.
61 Its main use is to recover the kernel stack and program counter
62 for kernel debugging.
63 .PP
64 The files
65 .BR regs ,
66 .BR fpregs ,
67 and
68 .BR kregs
69 hold representations of the user-level registers, floating-point registers,
70 and kernel registers in machine-dependent form.
71 The
72 .B kregs
73 file is read-only.
74 .PP
75 The read-only
76 .B fd
77 file lists the open file descriptors of the process.
78 The first line of the file is its current directory; subsequent lines list, one per line,
79 the open files, giving the decimal file descriptor number; whether the file is open for read
80 .RB ( r ),
81 write,
82 .RB ( w ),
83 or both
84 .RB ( rw );
85 the type, device number, and qid of the file; its I/O unit (the amount of data
86 that may be transferred on the file as a contiguous piece; see
87 .IR iounit (2)),
88 its I/O offset; and its name at the time it was opened.
89 .PP
90 The read-only
91 .B ns
92 file contains a textual representation of the process's file name space, in the format of
93 .IR namespace (6)
94 accepted by
95 .B newns
96 (see
97 .IR auth (2)).
98 The last line of the file identifies the current working directory of the process, in the form of a
99 .B cd
100 command
101 (see
102 .IR rc (1)).
103 The information in this file is based on the names files had when the name space was assembled,
104 so the names it contains may be inaccessible if the files have been subsequently renamed or rearranged.
105 .PP
106 The read-only
107 .B segment
108 file contains a textual display of the memory segments
109 attached to the process.  Each line has multiple fields:
110 the type of segment (\c
111 .BR Stack ,
112 .BR Text ,
113 .BR Data ,
114 .BR Bss ,
115 etc.); one-letter flags such as
116 .B R
117 for read-only, if any;
118 starting virtual address, in hexadecimal;
119 ending virtual address, and reference count.
120 .PP
121 The read-only
122 .B status
123 file contains a string with twelve fields, each followed by a space.
124 The fields are:
125 .IP \-
126 the process name and user name, each 27 characters left justified
127 .IP \-
128 the process state, 11 characters left justified (see
129 .IR ps (1))
130 .IP \-
131 the six 11-character numbers also held in the process's
132 .B #c/cputime
133 file
134 .IP \-
135 the amount of memory used by the process in units of 1024 bytes
136 .IP \-
137 the base and current scheduling priority, each 11 character numbers
138 .PP
139 The
140 .B args
141 file contains the arguments of the program when it was created by
142 .IR exec (2).
143 Writing to the
144 .B args
145 file will overwrite its contents.
146 If the program was not created by
147 .BR exec ,
148 such as by
149 .IR fork (2),
150 its
151 .B args
152 file will be empty.
153 The format of the file is a list of quoted strings suitable for
154 .BR tokenize ;
155 see
156 .IR getfields (2).
157 .PP
158 The
159 .B text
160 file is a pseudonym for the file
161 from which the process was executed;
162 its main use is to recover the symbol table of the process.
163 .PP
164 The
165 .B wait
166 file may be read to recover
167 records from the exiting children of the process in the format of
168 .B await
169 (see
170 .IR wait (2)).
171 If the process has no extant children, living or exited,
172 a read of
173 .B wait
174 will block.
175 It is an error for a process to attempt to read its own
176 .B wait
177 file when it has no children.
178 When a process's
179 .B wait
180 file is being read,
181 the process will draw an error
182 if it attempts an
183 .B await
184 system call; similarly, if a process is in an
185 .B await
186 system call, its
187 .B wait
188 file cannot be read by any process.
189 .PP
190 The read-only
191 .B profile
192 file contains the instruction frequency count information used for multiprocess profiling; see
193 .B tprof
194 in
195 .IR prof (1).
196 The information is gleaned by sampling the program's user-level program counter
197 at interrupt time.
198 .PP
199 Strings written to the
200 .B note
201 file will be posted as a note to the process
202 (see
203 .IR notify (2)).
204 The note should be less than
205 .B ERRLEN-1
206 characters long;
207 the last character is reserved for a terminating NUL character.
208 A read of at least
209 .B ERRLEN
210 characters will retrieve the oldest note posted to the
211 process and prevent its delivery to the process.
212 The
213 .B notepg
214 file is similar, but the note will be delivered to all the
215 processes in the target process's
216 .I note group
217 (see
218 .IR fork (2)).
219 However, if the process doing the write is in the group,
220 it will not receive the note.
221 The
222 .B notepg
223 file is write-only.
224 .PP
225 The textual
226 .B noteid
227 file may be read to recover an integer identifying the note group of the process
228 (see
229 .B RFNOTEG
230 in
231 .IR fork (2)).
232 The file may be written to cause the process to change to another note group,
233 provided the group exists and is owned by the same user.
234 .PP
235 The file
236 .B /proc/trace
237 can be opened once and read to see trace events from processes that have
238 had the string
239 .B trace
240 written to their
241 .B ctl
242 file.
243 Each event produces, in native machine format, the
244 .IR pid ,
245 a
246 .IR type ,
247 and a
248 .I "time stamp"
249 (see
250 .B /sys/include/trace.h
251 and
252 .BR /sys/src/cmd/trace.c ).
253 .
254 .SS Control messages
255 Textual messages written to the
256 .B ctl
257 file control the execution of the process.
258 Some require that the process is in a particular state
259 and return an error if it is not.
260 .TP 10n
261 .B stop
262 Suspend execution of the process, putting it in the
263 .B Stopped
264 state.
265 .TP 10n
266 .B start
267 Resume execution of a
268 .B Stopped
269 process.
270 .TP 10n
271 .B waitstop
272 Do not affect the process directly but, like all other messages ending with
273 .BR stop ,
274 block the process writing the
275 .B ctl
276 file until the target process is in the
277 .B Stopped
278 state or exits.
279 Also like other
280 .B stop
281 control messages,
282 if the target process would receive a note while the message is pending,
283 it is instead stopped and the debugging process is resumed.
284 .TP 10n
285 .B startstop
286 Allow a
287 .B Stopped
288 process to resume, and then do a
289 .B waitstop
290 action.
291 .TP 10n
292 .B hang
293 Set a bit in the process so that,
294 when it completes an
295 .IR exec (2)
296 system call, it will enter the
297 .B Stopped
298 state before returning to user mode.
299 This bit is inherited across
300 .IR fork (2)
301 and
302 .IR exec (2).
303 .TP 10n
304 .B nohang
305 Clear the hang bit.
306 .TP 10n
307 .B private
308 Make it impossible to read the process's user memory.
309 This property is inherited on
310 .IR fork (2),
311 cleared on
312 .IR exec (2),
313 and is not otherwise resettable.
314 .TP 10n
315 .B noswap
316 Don't allow this process to be swapped out.  This should
317 be used carefully and sparingly or the system could run
318 out of memory.  It is meant for processes that can't be
319 swapped, like the local fileserver implementing the swap
320 device and for processes containing sensitive data.
321 This property is inherited on
322 .IR fork (2),
323 cleared on
324 .IR exec (2),
325 and is not otherwise resettable.
326 .TP 10n
327 .B kill
328 Kill the process the next time it crosses the user/kernel boundary.
329 .TP 10n
330 .B "close\ \fIn
331 Close file descriptor
332 .I n
333 in the process.
334 .TP 10n
335 .B closefiles
336 Close all open file descriptors in the process.
337 .TP 10n
338 .B "pri\ \fIn
339 Set the base priority for the process to the integer
340 .IR n .
341 .TP 10n
342 .B "wired\ \fIn
343 Wire the process to processor
344 .IR n .
345 .TP 10n
346 .B trace
347 Without an argument, toggle trace event generation for this process into
348 .B /proc/trace
349 (see below).
350 With a zero argument, tracing for the proc is turned off, with a non-zero numeric
351 argument, it is turned on.
352 .TP 10n
353 .B interrupt
354 Interrupt a blocking system call. If no blocking call was in progress,
355 the interrupt will be pending and the next attempt to block will be interrupted.
356 This is similar to posting a note but, unlike notes, a pending interrupt is not
357 cleared when crossing the user/kernel boundary.
358 .TP 10n
359 .B nointerrupt
360 Clear a pending interrupt.
361 .TP 10n
362 .B "period\ \fInu
363 Set the real-time scheduling period of the process to
364 .IR nu ,
365 where
366 .I n
367 is an optionally signed number containing an optional decimal point and
368 .I u
369 is one of
370 .BR s ,
371 .BR ms ,
372 .BR us ,
373 .BR µs ,
374 .BR ns ,
375 or
376 empty.  The time is interpreted, respectively, as
377 .IR seconds ,
378 .IR milliseconds ,
379 .IR microseconds ,
380 .IR microseconds ,
381 .IR nanoseconds ,
382 or, in the case of an absent units specifier, as
383 .IR nanoseconds .
384 If the time specifier is signed, it is interpreted as an increment or decrement
385 from a previously set value.  See also the
386 .B admit
387 command below.
388 .TP 10n
389 .B "deadline\ \fInu
390 Set the real-time deadline interval of the process to
391 .IR nu ,
392 where
393 .I n
394 and
395 .I u
396 are interpreted as for
397 .B period
398 above.
399 .TP 10n
400 .B "cost\ \fInu
401 Set the real-time cost (maximum CPU time per period) of the process to
402 .IR nu ,
403 where
404 .I n
405 and
406 .I u
407 are interpreted as for
408 .B period
409 above.
410 .TP 10n
411 .B "sporadic
412 Use sporadic scheduling for the real-time process.  The description of the
413 .B admit
414 command below contains further details.
415 .TP 10n
416 .B "yieldonblock
417 Make the real-time process yield on blocking I/O.
418   The description of the
419 .B admit
420 command below contains further details.
421 .TP 10n
422 .B "admit
423 Given real-time
424 .IR period ,
425 .I deadline
426 and
427 .I cost
428 are set (an unset
429 .I deadline
430 will set
431 .I deadline
432 to
433 .IR period ),
434 perform a schedulability test and start scheduling the process as a real-time
435 process if the test succeeds.  If the test fails, the
436 .B write
437 will fail with error set to the reason for failure.
438 .TP 10n
439 .B event
440 Add a user event to the
441 .B /proc/trace
442 file.
443 .PD
444 .
445 .SS Real-time scheduling
446 .I Real-time
447 processes are periodically
448 .IR released ,
449 giving them a higher priority than non-real-time processes until they either
450 give up the processor voluntarily, they exhaust their CPU allocation, or they reach their
451 .IR deadline .
452 The moment of release is dictated by the
453 .I period
454 and whether the process is
455 .I sporadic
456 or not.
457 Non-sporadic processes are called
458 .I periodic
459 and they are released precisely at intervals of their period (but periods can be skipped
460 if the process blocks on I/O).
461 Sporadic processes are released whenever they become
462 runnable (after being blocked by
463 .IR sleep ()
464 or I/O), but always at least an interval of
465 .I period
466 after the previous release.
467 .PP
468 The
469 .I deadline
470 of a real-time process specifies that the process must complete within the first
471 .I deadline
472 seconds of its
473 .IR period .
474 The dealine must be less than or equal to the period.
475 If it is not specified, it is set to the period.
476 .PP
477 The
478 .I cost
479 of a real-time process describes the maximum CPU time the process may use per period.
480 .PP
481 A real-time process can give up the CPU before its deadline is reached
482 or its allocation is exhausted.
483 It does this by calling
484 .IR sleep (0).
485 If
486 .I yieldonblock
487 is specified, it also does it by executing any blocking system call.
488 .I Yieldonblock
489 is assumed for
490 .I sporadic
491 processes.
492 .PP
493 Of the released processes,
494 the one with the earliest deadline has the highest priority.
495 Care should be taken using spin locks (see
496 .IR lock (2))
497 because a real-time process spinning on a lock will not give up the processor until
498 its CPU allocation is exhausted; this is unlikely to be the desired behavior.
499 .PP
500 When a real-time process reaches its deadline or exhausts its CPU allocation, it remains
501 schedulable, but at a very low priority.
502 .PP
503 The priority is interpreted by Plan 9's multilevel process scheduler.
504 Priorities run from 0 to 19, with higher
505 numbers representing higher priorities.
506 A process has a base priority and
507 a running priority which is less than or equal to the base priority.
508 As a process uses up more of its allocated time, its priority is lowered.
509 Unless
510 explicitly set, user processes have base priority 10, kernel processes
511 13.
512 Children inherit the parent's base priority.
513 .SH FILES
514 .nf
515 .B /sys/src/9/*/mem.h
516 .B /sys/src/9/*/dat.h
517 .B /sys/include/trace.h
518 .fi
519 .SH SEE ALSO
520 .IR trace (1),
521 .IR debugger (2),
522 .IR mach (2),
523 .IR cons (3)
524 .SH SOURCE
525 .B /sys/src/9/port/devproc.c