OSDN Git Service

4c793c4f9851e9809e8f60dff036d2a3787fd0f7
[linuxjm/LDP_man-pages.git] / original / man2 / prctl.2
1 .\" Copyright (C) 1998 Andries Brouwer (aeb@cwi.nl)
2 .\" and Copyright (C) 2002, 2006, 2008, 2012, 2013 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" and Copyright Guillem Jover <guillem@hadrons.org>
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .\" Modified Thu Nov 11 04:19:42 MET 1999, aeb: added PR_GET_PDEATHSIG
28 .\" Modified 27 Jun 02, Michael Kerrisk
29 .\"     Added PR_SET_DUMPABLE, PR_GET_DUMPABLE,
30 .\"     PR_SET_KEEPCAPS, PR_GET_KEEPCAPS
31 .\" Modified 2006-08-30 Guillem Jover <guillem@hadrons.org>
32 .\"     Updated Linux versions where the options where introduced.
33 .\"     Added PR_SET_TIMING, PR_GET_TIMING, PR_SET_NAME, PR_GET_NAME,
34 .\"     PR_SET_UNALIGN, PR_GET_UNALIGN, PR_SET_FPEMU, PR_GET_FPEMU,
35 .\"     PR_SET_FPEXC, PR_GET_FPEXC
36 .\" 2008-04-29 Serge Hallyn, Document PR_CAPBSET_READ and PR_CAPBSET_DROP
37 .\" 2008-06-13 Erik Bosman, <ejbosman@cs.vu.nl>
38 .\"     Document PR_GET_TSC and PR_SET_TSC.
39 .\" 2008-06-15 mtk, Document PR_SET_SECCOMP, PR_GET_SECCOMP
40 .\" 2009-10-03 Andi Kleen, document PR_MCE_KILL
41 .\" 2012-04 Cyrill Gorcunov, Document PR_SET_MM
42 .\" 2012-04-25 Michael Kerrisk, Document PR_TASK_PERF_EVENTS_DISABLE and
43 .\"                             PR_TASK_PERF_EVENTS_ENABLE
44 .\" 2012-09-20 Kees Cook, update PR_SET_SECCOMP for mode 2
45 .\" 2012-09-20 Kees Cook, document PR_SET_NO_NEW_PRIVS, PR_GET_NO_NEW_PRIVS
46 .\" 2012-10-25 Michael Kerrisk, Document PR_SET_TIMERSLACK and
47 .\"                             PR_GET_TIMERSLACK
48 .\" 2013-01-10 Kees Cook, document PR_SET_PTRACER
49 .\" 2012-02-04 Michael kerrisk, document PR_{SET,GET}_CHILD_SUBREAPER
50 .\"
51 .\"
52 .TH PRCTL 2 2014-02-22 "Linux" "Linux Programmer's Manual"
53 .SH NAME
54 prctl \- operations on a process
55 .SH SYNOPSIS
56 .nf
57 .B #include <sys/prctl.h>
58 .sp
59 .BI "int prctl(int " option ", unsigned long " arg2 ", unsigned long " arg3 ,
60 .BI "          unsigned long " arg4 ", unsigned long " arg5 );
61 .fi
62 .SH DESCRIPTION
63 .BR prctl ()
64 is called with a first argument describing what to do
65 (with values defined in \fI<linux/prctl.h>\fP), and further
66 arguments with a significance depending on the first one.
67 The first argument can be:
68 .TP
69 .BR PR_CAPBSET_READ " (since Linux 2.6.25)"
70 Return (as the function result) 1 if the capability specified in
71 .I arg2
72 is in the calling thread's capability bounding set,
73 or 0 if it is not.
74 (The capability constants are defined in
75 .IR <linux/capability.h> .)
76 The capability bounding set dictates
77 whether the process can receive the capability through a
78 file's permitted capability set on a subsequent call to
79 .BR execve (2).
80
81 If the capability specified in
82 .I arg2
83 is not valid, then the call fails with the error
84 .BR EINVAL .
85 .TP
86 .BR PR_CAPBSET_DROP " (since Linux 2.6.25)"
87 If the calling thread has the
88 .B CAP_SETPCAP
89 capability, then drop the capability specified by
90 .I arg2
91 from the calling thread's capability bounding set.
92 Any children of the calling thread will inherit the newly
93 reduced bounding set.
94
95 The call fails with the error:
96 .B EPERM
97 if the calling thread does not have the
98 .BR CAP_SETPCAP ;
99 .BR EINVAL
100 if
101 .I arg2
102 does not represent a valid capability; or
103 .BR EINVAL
104 if file capabilities are not enabled in the kernel,
105 in which case bounding sets are not supported.
106 .TP
107 .BR PR_SET_CHILD_SUBREAPER " (since Linux 3.4)"
108 .\" commit ebec18a6d3aa1e7d84aab16225e87fd25170ec2b
109 If
110 .I arg2
111 is nonzero,
112 set the "child subreaper" attribute of the calling process;
113 if
114 .I arg2
115 is zero, unset the attribute.
116 When a process is marked as a child subreaper,
117 all of the children that it creates, and their descendants,
118 will be marked as having a subreaper.
119 In effect, a subreaper fulfills the role of
120 .BR init (1)
121 for its descendant processes.
122 Upon termination of a process
123 that is orphaned (i.e., its immediate parent has already terminated)
124 and marked as having a subreaper,
125 the nearest still living ancestor subreaper
126 will receive a
127 .BR SIGCHLD
128 signal and be able to
129 .BR wait (2)
130 on the process to discover its termination status.
131 .TP
132 .BR PR_GET_CHILD_SUBREAPER " (since Linux 3.4)"
133 Return the "child subreaper" setting of the caller,
134 in the location pointed to by
135 .IR "(int\ *) arg2" .
136 .TP
137 .BR PR_SET_DUMPABLE " (since Linux 2.3.20)"
138 Set the state of the flag determining whether core dumps are produced
139 for the calling process upon delivery of a signal whose default behavior is
140 to produce a core dump.
141 (Normally, this flag is set for a process by default, but it is cleared
142 when a set-user-ID or set-group-ID program is executed and also by
143 various system calls that manipulate process UIDs and GIDs).
144 In kernels up to and including 2.6.12,
145 .I arg2
146 must be either 0 (process is not dumpable) or 1 (process is dumpable).
147 Between kernels 2.6.13 and 2.6.17, the value 2 was also permitted,
148 which caused any binary which normally would not be dumped
149 to be dumped readable by root only;
150 for security reasons, this feature has been removed.
151 .\" See http://marc.theaimsgroup.com/?l=linux-kernel&m=115270289030630&w=2
152 .\" Subject:    Fix prctl privilege escalation (CVE-2006-2451)
153 .\" From:       Marcel Holtmann <marcel () holtmann ! org>
154 .\" Date:       2006-07-12 11:12:00
155 (See also the description of
156 .I /proc/sys/fs/suid_dumpable
157 in
158 .BR proc (5).)
159 Processes that are not dumpable can not be attached via
160 .BR ptrace (2)
161 .BR PTRACE_ATTACH .
162 .TP
163 .BR PR_GET_DUMPABLE " (since Linux 2.3.20)"
164 Return (as the function result) the current state of the calling
165 process's dumpable flag.
166 .\" Since Linux 2.6.13, the dumpable flag can have the value 2,
167 .\" but in 2.6.13 PR_GET_DUMPABLE simply returns 1 if the dumpable
168 .\" flags has a nonzero value.  This was fixed in 2.6.14.
169 .TP
170 .BR PR_SET_ENDIAN " (since Linux 2.6.18, PowerPC only)"
171 Set the endian-ness of the calling process to the value given
172 in \fIarg2\fP, which should be one of the following:
173 .\" Respectively 0, 1, 2
174 .BR PR_ENDIAN_BIG ,
175 .BR PR_ENDIAN_LITTLE ,
176 or
177 .B PR_ENDIAN_PPC_LITTLE
178 (PowerPC pseudo little endian).
179 .TP
180 .BR PR_GET_ENDIAN " (since Linux 2.6.18, PowerPC only)"
181 Return the endian-ness of the calling process,
182 in the location pointed to by
183 .IR "(int\ *) arg2" .
184 .TP
185 .BR PR_SET_FPEMU " (since Linux 2.4.18, 2.5.9, only on ia64)"
186 Set floating-point emulation control bits to \fIarg2\fP.
187 Pass \fBPR_FPEMU_NOPRINT\fP to silently emulate fp operations accesses, or
188 \fBPR_FPEMU_SIGFPE\fP to not emulate fp operations and send
189 .B SIGFPE
190 instead.
191 .TP
192 .BR PR_GET_FPEMU " (since Linux 2.4.18, 2.5.9, only on ia64)"
193 Return floating-point emulation control bits,
194 in the location pointed to by
195 .IR "(int\ *) arg2" .
196 .TP
197 .BR PR_SET_FPEXC " (since Linux 2.4.21, 2.5.32, only on PowerPC)"
198 Set floating-point exception mode to \fIarg2\fP.
199 Pass \fBPR_FP_EXC_SW_ENABLE\fP to use FPEXC for FP exception enables,
200 \fBPR_FP_EXC_DIV\fP for floating-point divide by zero,
201 \fBPR_FP_EXC_OVF\fP for floating-point overflow,
202 \fBPR_FP_EXC_UND\fP for floating-point underflow,
203 \fBPR_FP_EXC_RES\fP for floating-point inexact result,
204 \fBPR_FP_EXC_INV\fP for floating-point invalid operation,
205 \fBPR_FP_EXC_DISABLED\fP for FP exceptions disabled,
206 \fBPR_FP_EXC_NONRECOV\fP for async nonrecoverable exception mode,
207 \fBPR_FP_EXC_ASYNC\fP for async recoverable exception mode,
208 \fBPR_FP_EXC_PRECISE\fP for precise exception mode.
209 .TP
210 .BR PR_GET_FPEXC " (since Linux 2.4.21, 2.5.32, only on PowerPC)"
211 Return floating-point exception mode,
212 in the location pointed to by
213 .IR "(int\ *) arg2" .
214 .TP
215 .BR PR_SET_KEEPCAPS " (since Linux 2.2.18)"
216 Set the state of the thread's "keep capabilities" flag,
217 which determines whether the threads's permitted
218 capability set is cleared when a change is made to the threads's user IDs
219 such that the threads's real UID, effective UID, and saved set-user-ID
220 all become nonzero when at least one of them previously had the value 0.
221 By default, the permitted capability set is cleared when such a change is made;
222 setting the "keep capabilities" flag prevents it from being cleared.
223 .I arg2
224 must be either 0 (permitted capabilities are cleared)
225 or 1 (permitted capabilities are kept).
226 (A thread's
227 .I effective
228 capability set is always cleared when such a credential change is made,
229 regardless of the setting of the "keep capabilities" flag.)
230 The "keep capabilities" value will be reset to 0 on subsequent calls to
231 .BR execve (2).
232 .TP
233 .BR PR_GET_KEEPCAPS " (since Linux 2.2.18)"
234 Return (as the function result) the current state of the calling threads's
235 "keep capabilities" flag.
236 .TP
237 .BR PR_SET_NAME " (since Linux 2.6.9)"
238 Set the name of the calling thread,
239 using the value in the location pointed to by
240 .IR "(char\ *) arg2" .
241 The name can be up to 16 bytes long,
242 .\" TASK_COMM_LEN in include/linux/sched.h
243 and should be null-terminated if it contains fewer bytes.
244 This is the same attribute that can be set via
245 .BR pthread_setname_np (3)
246 and retrieved using
247 .BR pthread_getname_np (3).
248 The attribute is likewise accessible via
249 .IR /proc/self/task/[tid]/comm ,
250 where
251 .I tid
252 is the name of the calling thread.
253 .TP
254 .BR PR_GET_NAME " (since Linux 2.6.11)"
255 Return the name of the calling thread,
256 in the buffer pointed to by
257 .IR "(char\ *) arg2" .
258 The buffer should allow space for up to 16 bytes;
259 the returned string will be null-terminated if it is shorter than that.
260 .TP
261 .BR PR_SET_NO_NEW_PRIVS " (since Linux 3.5)"
262 Set the calling process's
263 .I no_new_privs
264 bit to the value in
265 .IR arg2 .
266 With
267 .I no_new_privs
268 set to 1,
269 .BR execve (2)
270 promises not to grant privileges to do anything
271 that could not have been done without the
272 .BR execve (2)
273 call (for example,
274 rendering the set-user-ID and set-group-ID permission bits,
275 and file capabilities non-functional).
276 Once set, this bit cannot be unset.
277 The setting of this bit is inherited by children created by
278 .BR fork (2)
279 and
280 .BR clone (2),
281 and preserved across
282 .BR execve (2).
283
284 For more information, see the kernel source file
285 .IR Documentation/prctl/no_new_privs.txt .
286 .TP
287 .BR PR_GET_NO_NEW_PRIVS " (since Linux 3.5)"
288 Return (as the function result) the value of the
289 .I no_new_privs
290 bit for the current process.
291 A value of 0 indicates the regular
292 .BR execve (2)
293 behavior.
294 A value of 1 indicates
295 .BR execve (2)
296 will operate in the privilege-restricting mode described above.
297 .TP
298 .BR PR_SET_PDEATHSIG " (since Linux 2.1.57)"
299 Set the parent process death signal
300 of the calling process to \fIarg2\fP (either a signal value
301 in the range 1..maxsig, or 0 to clear).
302 This is the signal that the calling process will get when its
303 parent dies.
304 This value is cleared for the child of a
305 .BR fork (2)
306 and (since Linux 2.4.36 / 2.6.23)
307 when executing a set-user-ID or set-group-ID binary.
308 This value is preserved across
309 .BR execve (2).
310 .TP
311 .BR PR_GET_PDEATHSIG " (since Linux 2.3.15)"
312 Return the current value of the parent process death signal,
313 in the location pointed to by
314 .IR "(int\ *) arg2" .
315 .TP
316 .BR PR_SET_PTRACER " (since Linux 3.4)"
317 .\" commit 2d514487faf188938a4ee4fb3464eeecfbdcf8eb
318 .\" commit bf06189e4d14641c0148bea16e9dd24943862215
319 This is meaningful only when the Yama LSM is enabled and in mode 1
320 ("restricted ptrace", visible via
321 .IR /proc/sys/kernel/yama/ptrace_scope ).
322 When a "ptracer process ID" is passed in \fIarg2\fP,
323 the caller is declaring that the ptracer process can
324 .BR ptrace (2)
325 the calling process as if it were a direct process ancestor.
326 Each
327 .B PR_SET_PTRACER
328 operation replaces the previous "ptracer process ID".
329 Employing
330 .B PR_SET_PTRACER
331 with
332 .I arg2
333 set to 0 clears the caller's "ptracer process ID".
334 If
335 .I arg2
336 is
337 .BR PR_SET_PTRACER_ANY ,
338 the ptrace restrictions introduced by Yama are effectively disabled for the
339 calling process.
340
341 For further information, see the kernel source file
342 .IR Documentation/security/Yama.txt .
343 .TP
344 .BR PR_SET_SECCOMP " (since Linux 2.6.23)"
345 .\" See http://thread.gmane.org/gmane.linux.kernel/542632
346 .\" [PATCH 0 of 2] seccomp updates
347 .\" andrea@cpushare.com
348 Set the secure computing (seccomp) mode for the calling thread, to limit
349 the available system calls.
350 The seccomp mode is selected via
351 .IR arg2 .
352 (The seccomp constants are defined in
353 .IR <linux/seccomp.h> .)
354
355 With
356 .IR arg2
357 set to
358 .BR SECCOMP_MODE_STRICT
359 the only system calls that the thread is permitted to make are
360 .BR read (2),
361 .BR write (2),
362 .BR _exit (2),
363 and
364 .BR sigreturn (2).
365 Other system calls result in the delivery of a
366 .BR SIGKILL
367 signal.
368 Strict secure computing mode is useful for number-crunching applications
369 that may need to execute untrusted byte code,
370 perhaps obtained by reading from a pipe or socket.
371 This operation is available only
372 if the kernel is configured with
373 .B CONFIG_SECCOMP
374 enabled.
375
376 With
377 .IR arg2
378 set to
379 .BR SECCOMP_MODE_FILTER " (since Linux 3.5)"
380 the system calls allowed are defined by a pointer
381 to a Berkeley Packet Filter passed in
382 .IR arg3 .
383 This argument is a pointer to
384 .IR "struct sock_fprog" ;
385 it can be designed to filter
386 arbitrary system calls and system call arguments.
387 This mode is available only if the kernel is configured with
388 .B CONFIG_SECCOMP_FILTER
389 enabled.
390
391 If
392 .BR SECCOMP_MODE_FILTER
393 filters permit
394 .BR fork (2),
395 then the seccomp mode is inherited by children created by
396 .BR fork (2);
397 if
398 .BR execve (2)
399 is permitted, then the seccomp mode is preserved across
400 .BR execve (2).
401 If the filters permit
402 .BR prctl ()
403 calls, then additional filters can be added;
404 they are run in order until the first non-allow result is seen.
405
406 For further information, see the kernel source file
407 .IR Documentation/prctl/seccomp_filter.txt .
408 .TP
409 .BR PR_GET_SECCOMP " (since Linux 2.6.23)"
410 Return (as the function result)
411 the secure computing mode of the calling thread.
412 If the caller is not in secure computing mode, this operation returns 0;
413 if the caller is in strict secure computing mode, then the
414 .BR prctl ()
415 call will cause a
416 .B SIGKILL
417 signal to be sent to the process.
418 If the caller is in filter mode, and this system call is allowed by the
419 seccomp filters, it returns 2.
420 This operation is available only
421 if the kernel is configured with
422 .B CONFIG_SECCOMP
423 enabled.
424 .TP
425 .BR PR_SET_SECUREBITS " (since Linux 2.6.26)"
426 Set the "securebits" flags of the calling thread to the value supplied in
427 .IR arg2 .
428 See
429 .BR capabilities (7).
430 .TP
431 .BR PR_GET_SECUREBITS " (since Linux 2.6.26)"
432 Return (as the function result)
433 the "securebits" flags of the calling thread.
434 See
435 .BR capabilities (7).
436 .TP
437 .BR PR_GET_TID_ADDRESS " (since Linux 3.5)"
438 .\" commit 300f786b2683f8bb1ec0afb6e1851183a479c86d
439 Retrieve the
440 .I clear_child_tid
441 address set by
442 .BR set_tid_address (2)
443 and the
444 .BR clone (2)
445 .B CLONE_CHILD_CLEARTID
446 flag, in the location pointed to by
447 .IR "(int\ **)\ arg2" .
448 This feature is available only if the kernel is built with the
449 .BR CONFIG_CHECKPOINT_RESTORE
450 option enabled.
451 .TP
452 .BR PR_SET_TIMERSLACK " (since Linux 2.6.28)"
453 .\" See https://lwn.net/Articles/369549/
454 .\" commit 6976675d94042fbd446231d1bd8b7de71a980ada
455 Set the current timer slack for the calling thread to the nanosecond value
456 supplied in
457 .IR arg2 .
458 If
459 .I arg2
460 is less than or equal to zero,
461 .\" It seems that it's not possible to set the timer slack to zero;
462 .\" The minimum value is 1? Seems a little strange.
463 reset the current timer slack to the thread's default timer slack value.
464 The timer slack is used by the kernel to group timer expirations
465 for the calling thread that are close to one another;
466 as a consequence, timer expirations for the thread may be
467 up to the specified number of nanoseconds late (but will never expire early).
468 Grouping timer expirations can help reduce system power consumption
469 by minimizing CPU wake-ups.
470
471 The timer expirations affected by timer slack are those set by
472 .BR select (2),
473 .BR pselect (2),
474 .BR poll (2),
475 .BR ppoll (2),
476 .BR epoll_wait (2),
477 .BR epoll_pwait (2),
478 .BR clock_nanosleep (2),
479 .BR nanosleep (2),
480 and
481 .BR futex (2)
482 (and thus the library functions implemented via futexes, including
483 .\" List obtained by grepping for futex usage in glibc source
484 .BR pthread_cond_timedwait (3),
485 .BR pthread_mutex_timedlock (3),
486 .BR pthread_rwlock_timedrdlock (3),
487 .BR pthread_rwlock_timedwrlock (3),
488 and
489 .BR sem_timedwait (3)).
490
491 Timer slack is not applied to threads that are scheduled under
492 a real-time scheduling policy (see
493 .BR sched_setscheduler (2)).
494
495 Each thread has two associated timer slack values:
496 a "default" value, and a "current" value.
497 The current value is the one that governs grouping
498 of timer expirations.
499 When a new thread is created,
500 the two timer slack values are made the same as the current value
501 of the creating thread.
502 Thereafter, a thread can adjust its current timer slack value via
503 .BR PR_SET_TIMERSLACK
504 (the default value can't be changed).
505 The timer slack values of
506 .IR init
507 (PID 1), the ancestor of all processes,
508 are 50,000 nanoseconds (50 microseconds).
509 The timer slack values are preserved across
510 .BR execve (2).
511 .TP
512 .BR PR_GET_TIMERSLACK " (since Linux 2.6.28)"
513 Return (as the function result)
514 the current timer slack value of the calling thread.
515 .TP
516 .BR PR_SET_TIMING " (since Linux 2.6.0-test4)"
517 Set whether to use (normal, traditional) statistical process timing or
518 accurate timestamp-based process timing, by passing
519 .B PR_TIMING_STATISTICAL
520 .\" 0
521 or
522 .B PR_TIMING_TIMESTAMP
523 .\" 1
524 to \fIarg2\fP.
525 .B PR_TIMING_TIMESTAMP
526 is not currently implemented
527 (attempting to set this mode will yield the error
528 .BR EINVAL ).
529 .\" PR_TIMING_TIMESTAMP doesn't do anything in 2.6.26-rc8,
530 .\" and looking at the patch history, it appears
531 .\" that it never did anything.
532 .TP
533 .BR PR_GET_TIMING " (since Linux 2.6.0-test4)"
534 Return (as the function result) which process timing method is currently
535 in use.
536 .TP
537 .BR PR_TASK_PERF_EVENTS_DISABLE " (since Linux 2.6.31)"
538 Disable all performance counters attached to the calling process,
539 regardless of whether the counters were created by
540 this process or another process.
541 Performance counters created by the calling process for other
542 processes are unaffected.
543 For more information on performance counters, see the Linux kernel source file
544 .IR tools/perf/design.txt .
545 .IP
546 Originally called
547 .BR PR_TASK_PERF_COUNTERS_DISABLE ;
548 .\" commit 1d1c7ddbfab358445a542715551301b7fc363e28
549 renamed (with same numerical value)
550 in Linux 2.6.32.
551 .TP
552 .BR PR_TASK_PERF_EVENTS_ENABLE " (since Linux 2.6.31)"
553 The converse of
554 .BR PR_TASK_PERF_EVENTS_DISABLE ;
555 enable performance counters attached to the calling process.
556 .IP
557 Originally called
558 .BR PR_TASK_PERF_COUNTERS_ENABLE ;
559 .\" commit 1d1c7ddbfab358445a542715551301b7fc363e28
560 renamed
561 .\" commit cdd6c482c9ff9c55475ee7392ec8f672eddb7be6
562 in Linux 2.6.32.
563 .TP
564 .BR PR_SET_TSC " (since Linux 2.6.26, x86 only)"
565 Set the state of the flag determining whether the timestamp counter
566 can be read by the process.
567 Pass
568 .B PR_TSC_ENABLE
569 to
570 .I arg2
571 to allow it to be read, or
572 .B PR_TSC_SIGSEGV
573 to generate a
574 .B SIGSEGV
575 when the process tries to read the timestamp counter.
576 .TP
577 .BR PR_GET_TSC " (since Linux 2.6.26, x86 only)"
578 Return the state of the flag determining whether the timestamp counter
579 can be read,
580 in the location pointed to by
581 .IR "(int\ *) arg2" .
582 .TP
583 .B PR_SET_UNALIGN
584 (Only on: ia64, since Linux 2.3.48; parisc, since Linux 2.6.15;
585 PowerPC, since Linux 2.6.18; Alpha, since Linux 2.6.22)
586 Set unaligned access control bits to \fIarg2\fP.
587 Pass
588 \fBPR_UNALIGN_NOPRINT\fP to silently fix up unaligned user accesses,
589 or \fBPR_UNALIGN_SIGBUS\fP to generate
590 .B SIGBUS
591 on unaligned user access.
592 .TP
593 .B PR_GET_UNALIGN
594 (see
595 .B PR_SET_UNALIGN
596 for information on versions and architectures)
597 Return unaligned access control bits, in the location pointed to by
598 .IR "(int\ *) arg2" .
599 .TP
600 .BR PR_MCE_KILL " (since Linux 2.6.32)"
601 Set the machine check memory corruption kill policy for the current thread.
602 If
603 .I arg2
604 is
605 .BR PR_MCE_KILL_CLEAR ,
606 clear the thread memory corruption kill policy and use the system-wide default.
607 (The system-wide default is defined by
608 .IR /proc/sys/vm/memory_failure_early_kill ;
609 see
610 .BR proc (5).)
611 If
612 .I arg2
613 is
614 .BR PR_MCE_KILL_SET ,
615 use a thread-specific memory corruption kill policy.
616 In this case,
617 .I arg3
618 defines whether the policy is
619 .I early kill
620 .RB ( PR_MCE_KILL_EARLY ),
621 .I late kill
622 .RB ( PR_MCE_KILL_LATE ),
623 or the system-wide default
624 .RB ( PR_MCE_KILL_DEFAULT ).
625 Early kill means that the thread receives a
626 .B SIGBUS
627 signal as soon as hardware memory corruption is detected inside
628 its address space.
629 In late kill mode, the process is killed only when it accesses a corrupted page.
630 See
631 .BR sigaction (2)
632 for more information on the
633 .BR SIGBUS
634 signal.
635 The policy is inherited by children.
636 The remaining unused
637 .BR prctl ()
638 arguments must be zero for future compatibility.
639 .TP
640 .BR PR_MCE_KILL_GET " (since Linux 2.6.32)"
641 Return the current per-process machine check kill policy.
642 All unused
643 .BR prctl ()
644 arguments must be zero.
645 .TP
646 .BR PR_SET_MM " (since Linux 3.3)"
647 .\" commit 028ee4be34a09a6d48bdf30ab991ae933a7bc036
648 Modify certain kernel memory map descriptor fields
649 of the calling process.
650 Usually these fields are set by the kernel and dynamic loader (see
651 .BR ld.so (8)
652 for more information) and a regular application should not use this feature.
653 However, there are cases, such as self-modifying programs,
654 where a program might find it useful to change its own memory map.
655 This feature is available only if the kernel is built with the
656 .BR CONFIG_CHECKPOINT_RESTORE
657 option enabled.
658 The calling process must have the
659 .BR CAP_SYS_RESOURCE
660 capability.
661 The value in
662 .I arg2
663 is one of the options below, while
664 .I arg3
665 provides a new value for the option.
666 .RS
667 .TP
668 .BR PR_SET_MM_START_CODE
669 Set the address above which the program text can run.
670 The corresponding memory area must be readable and executable,
671 but not writable or sharable (see
672 .BR mprotect (2)
673 and
674 .BR mmap (2)
675 for more information).
676 .TP
677 .BR PR_SET_MM_END_CODE
678 Set the address below which the program text can run.
679 The corresponding memory area must be readable and executable,
680 but not writable or sharable.
681 .TP
682 .BR PR_SET_MM_START_DATA
683 Set the address above which initialized and
684 uninitialized (bss) data are placed.
685 The corresponding memory area must be readable and writable,
686 but not executable or sharable.
687 .TP
688 .B PR_SET_MM_END_DATA
689 Set the address below which initialized and
690 uninitialized (bss) data are placed.
691 The corresponding memory area must be readable and writable,
692 but not executable or sharable.
693 .TP
694 .BR PR_SET_MM_START_STACK
695 Set the start address of the stack.
696 The corresponding memory area must be readable and writable.
697 .TP
698 .BR PR_SET_MM_START_BRK
699 Set the address above which the program heap can be expanded with
700 .BR brk (2)
701 call.
702 The address must be greater than the ending address of
703 the current program data segment.
704 In addition, the combined size of the resulting heap and
705 the size of the data segment can't exceed the
706 .BR RLIMIT_DATA
707 resource limit (see
708 .BR setrlimit (2)).
709 .TP
710 .BR PR_SET_MM_BRK
711 Set the current
712 .BR brk (2)
713 value.
714 The requirements for the address are the same as for the
715 .BR PR_SET_MM_START_BRK
716 option.
717 .P
718 The following options are available since Linux 3.5.
719 .\" commit fe8c7f5cbf91124987106faa3bdf0c8b955c4cf7
720 .TP
721 .BR PR_SET_MM_ARG_START
722 Set the address above which the program command line is placed.
723 .TP
724 .BR PR_SET_MM_ARG_END
725 Set the address below which the program command line is placed.
726 .TP
727 .BR PR_SET_MM_ENV_START
728 Set the address above which the program environment is placed.
729 .TP
730 .BR PR_SET_MM_ENV_END
731 Set the address below which the program environment is placed.
732 .IP
733 The address passed with
734 .BR PR_SET_MM_ARG_START ,
735 .BR PR_SET_MM_ARG_END ,
736 .BR PR_SET_MM_ENV_START ,
737 and
738 .BR PR_SET_MM_ENV_END
739 should belong to a process stack area.
740 Thus, the corresponding memory area must be readable, writable, and
741 (depending on the kernel configuration) have the
742 .BR MAP_GROWSDOWN
743 attribute set (see
744 .BR mmap (2)).
745 .TP
746 .BR PR_SET_MM_AUXV
747 Set a new auxiliary vector.
748 The
749 .I arg3
750 argument should provide the address of the vector.
751 The
752 .I arg4
753 is the size of the vector.
754 .TP
755 .BR PR_SET_MM_EXE_FILE
756 .\" commit b32dfe377102ce668775f8b6b1461f7ad428f8b6
757 Supersede the
758 .IR /proc/pid/exe
759 symbolic link with a new one pointing to a new executable file
760 identified by the file descriptor provided in
761 .I arg3
762 argument.
763 The file descriptor should be obtained with a regular
764 .BR open (2)
765 call.
766 .IP
767 To change the symbolic link, one needs to unmap all existing
768 executable memory areas, including those created by the kernel itself
769 (for example the kernel usually creates at least one executable
770 memory area for the ELF
771 .IR \.text
772 section).
773 .IP
774 The second limitation is that such transitions can be done only once
775 in a process life time.
776 Any further attempts will be rejected.
777 This should help system administrators monitor unusual
778 symbolic-link transitions over all processes running on a system.
779 .RE
780 .\"
781 .SH RETURN VALUE
782 On success,
783 .BR PR_GET_DUMPABLE ,
784 .BR PR_GET_KEEPCAPS ,
785 .BR PR_GET_NO_NEW_PRIVS ,
786 .BR PR_CAPBSET_READ ,
787 .BR PR_GET_TIMING ,
788 .BR PR_GET_TIMERSLACK ,
789 .BR PR_GET_SECUREBITS ,
790 .BR PR_MCE_KILL_GET ,
791 and (if it returns)
792 .BR PR_GET_SECCOMP
793 return the nonnegative values described above.
794 All other
795 .I option
796 values return 0 on success.
797 On error, \-1 is returned, and
798 .I errno
799 is set appropriately.
800 .SH ERRORS
801 .TP
802 .B EFAULT
803 .I arg2
804 is an invalid address.
805 .TP
806 .B EINVAL
807 The value of
808 .I option
809 is not recognized.
810 .TP
811 .B EINVAL
812 .I option
813 is
814 .BR PR_MCE_KILL
815 or
816 .BR PR_MCE_KILL_GET
817 or
818 .BR PR_SET_MM ,
819 and unused
820 .BR prctl ()
821 arguments were not specified as zero.
822 .TP
823 .B EINVAL
824 .I arg2
825 is not valid value for this
826 .IR option .
827 .TP
828 .B EINVAL
829 .I option
830 is
831 .BR PR_SET_SECCOMP
832 or
833 .BR PR_GET_SECCOMP ,
834 and the kernel was not configured with
835 .BR CONFIG_SECCOMP .
836 .TP
837 .B EINVAL
838 .I option
839 is
840 .BR PR_SET_MM ,
841 and one of the following is true
842 .RS
843 .IP * 3
844 .I arg4
845 or
846 .I arg5
847 is nonzero;
848 .IP *
849 .I arg3
850 is greater than
851 .B TASK_SIZE
852 (the limit on the size of the user address space for this architecture);
853 .IP *
854 .I arg2
855 is
856 .BR PR_SET_MM_START_CODE ,
857 .BR PR_SET_MM_END_CODE ,
858 .BR PR_SET_MM_START_DATA ,
859 .BR PR_SET_MM_END_DATA ,
860 or
861 .BR PR_SET_MM_START_STACK ,
862 and the permissions of the corresponding memory area are not as required;
863 .IP *
864 .I arg2
865 is
866 .BR PR_SET_MM_START_BRK
867 or
868 .BR PR_SET_MM_BRK ,
869 and
870 .I arg3
871 is less than or equal to the end of the data segment
872 or specifies a value that would cause the
873 .B RLIMIT_DATA
874 resource limit to be exceeded.
875 .RE
876 .TP
877 .B EINVAL
878 .I option
879 is
880 .BR PR_SET_PTRACER
881 and
882 .I arg2
883 is not 0,
884 .BR PR_SET_PTRACER_ANY ,
885 or the PID of an existing process.
886 .TP
887 .B EPERM
888 .I option
889 is
890 .BR PR_SET_SECUREBITS ,
891 and the caller does not have the
892 .B CAP_SETPCAP
893 capability,
894 or tried to unset a "locked" flag,
895 or tried to set a flag whose corresponding locked flag was set
896 (see
897 .BR capabilities (7)).
898 .TP
899 .B EPERM
900 .I option
901 is
902 .BR PR_SET_KEEPCAPS ,
903 and the callers's
904 .B SECURE_KEEP_CAPS_LOCKED
905 flag is set
906 (see
907 .BR capabilities (7)).
908 .TP
909 .B EPERM
910 .I option
911 is
912 .BR PR_CAPBSET_DROP ,
913 and the caller does not have the
914 .B CAP_SETPCAP
915 capability.
916 .TP
917 .B EPERM
918 .I option
919 is
920 .BR PR_SET_MM ,
921 and the caller does not have the
922 .B CAP_SYS_RESOURCE
923 capability.
924 .TP
925 .B EACCES
926 .I option
927 is
928 .BR PR_SET_MM ,
929 and
930 .I arg3
931 is
932 .BR PR_SET_MM_EXE_FILE ,
933 the file is not executable.
934 .TP
935 .B EBUSY
936 .I option
937 is
938 .BR PR_SET_MM ,
939 .I arg3
940 is
941 .BR PR_SET_MM_EXE_FILE ,
942 and this the second attempt to change the
943 .I /proc/pid/exe
944 symbolic link, which is prohibited.
945 .TP
946 .B EBADF
947 .I option
948 is
949 .BR PR_SET_MM ,
950 .I arg3
951 is
952 .BR PR_SET_MM_EXE_FILE ,
953 and the file descriptor passed in
954 .I arg4
955 is not valid.
956 .\" The following can't actually happen, because prctl() in
957 .\" seccomp mode will cause SIGKILL.
958 .\" .TP
959 .\" .B EPERM
960 .\" .I option
961 .\" is
962 .\" .BR PR_SET_SECCOMP ,
963 .\" and secure computing mode is already 1.
964 .SH VERSIONS
965 The
966 .BR prctl ()
967 system call was introduced in Linux 2.1.57.
968 .\" The library interface was added in glibc 2.0.6
969 .SH CONFORMING TO
970 This call is Linux-specific.
971 IRIX has a
972 .BR prctl ()
973 system call (also introduced in Linux 2.1.44
974 as irix_prctl on the MIPS architecture),
975 with prototype
976 .sp
977 .BI "ptrdiff_t prctl(int " option ", int " arg2 ", int " arg3 );
978 .sp
979 and options to get the maximum number of processes per user,
980 get the maximum number of processors the calling process can use,
981 find out whether a specified process is currently blocked,
982 get or set the maximum stack size, and so on.
983 .SH SEE ALSO
984 .BR signal (2),
985 .BR core (5)
986 .SH COLOPHON
987 This page is part of release 3.64 of the Linux
988 .I man-pages
989 project.
990 A description of the project,
991 and information about reporting bugs,
992 can be found at
993 \%http://www.kernel.org/doc/man\-pages/.